How can I check if all elements of an array are truthy or falsey.
Since the following doesn't seem to do it:
_.all([true, true, true], true);
it returns: false
?
How can I check if all elements of an array are truthy or falsey.
Since the following doesn't seem to do it:
_.all([true, true, true], true);
it returns: false
?
You should re-read the
_.every(collection, [predicate=_.identity])
api doc of lodash. The issue with your code is the second param you are passing. Remove it and it works