Lodash - negate 方法



语法

_.negate(predicate)

创建函数,该函数可以否定谓词函数的结果。函数谓词使用已创建函数的 this 绑定和参数进行调用。

参数

  • 谓词 (函数) − 要否定的谓词。

输出

  • (函数) − 返回新的否定函数。

示例

var _ = require('lodash');

function isEven(n) {
   return n % 2 == 0;
}
 
console.log(_.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)));

tester.js 保存以上程序。运行以下命令来执行此程序。

命令

\>node tester.js

输出

[ 1, 3, 5 ]
lodash_function.htm
广告