Following this question here :
Using the checked binding in knockout with a list of checkboxes checks all the checkboxes
I\'ve c
You can also try linq.js
In linq.js your
selectedFruits.select(fruit=>fruit.id);
will be
Enumerable.From(selectedFruits).Select(function (fruit) { return fruit.id; });