Underscore.js是一个JavaScript库,它提供了许多有用的函数,即使不使用任何内置对象,它们也可以以很大的方式帮助编程,例如映射,过滤器,调用等。
_.negate()函数是JavaScript的Underscore.js库中的内置函数,用于查找声明的谓词函数的新否定版本。
用法:
_.negate(predicate)
参数:它接受以下指定的单个参数:
- predicate:它是陈述的谓词函数。
返回值:此方法返回所声明谓词函数的新否定版本。
范例1:
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script>
var isNaN = _.negate(Boolean);
console.log(_.find(
[3, -11, undefined, 41, 0], isNaN));
</script>
</body>
</html>
输出:
undefined
范例2:
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
</head>
<body>
<script>
function isCSportal(character) {
return character === "GeeksforGeeks";
}
var isNotCSportal = _.negate(isCSportal);
console.log(isNotCSportal("GeeksforGeeks"));
console.log(isNotCSportal("GfG"));
</script>
</body>
</html>
输出:
false true
参考:https://underscorejs.org/#negate
相关用法
- Lodash _.negate()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Underscore.js _.negate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。