negate_.negate(predicate)
Returns a new negated version of the predicate function.
1 2 3 | var isFalsy = _.negate(Boolean); _.find([-2, -1, 0, 1, 2], isFalsy); => 0 |
negate_.negate(predicate)
Returns a new negated version of the predicate function.
1 2 3 | var isFalsy = _.negate(Boolean); _.find([-2, -1, 0, 1, 2], isFalsy); => 0 |
Designed by : w10schools
service@w10schools.com
Please login to continue.