let allChecked = _.every(this.collection, this.checked);
I'm working on tweaking an existing code snippet that currently evaluates to true if every item in the collection has the checked
property set to true. My goal is to adjust it so that it only checks items where the disabled
property is not set to true. In other words, I want to skip over any items in the collection where disabled
is true during this _.every()
evaluation.