質問

I assume I'm missing something obvious, but in this code snippet using Lo-Dash:

var collection = [{"foo": 1, "bar": 2}, {"foo": 3, "bar": 4}];

var result = _.every(collection, function(testObj) {
    _.has(testObj, "foo");
});

console.log(result);

I would expect result to be true, but it evaluates to false. Here's a fiddle if you want to play with it: http://jsfiddle.net/XcZnd/

役に立ちましたか?

解決

You have to return the result of _.has from the callback.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top