当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


underscore.js _.not()用法及代码示例


_.not()方法r返回一个布尔值,该布尔值与给定值的真实性布尔值相反。

用法:

_.not( value );

参数:

  • value:给定值,用于返回相反的布尔值。

返回值:此方法返回一个布尔值。

注意:由于它需要安装underscore.js contrib库,因此在常规JavaScript中将无法使用。可以使用npm install underscore-contrib -save安装Underscore.js contrib库。



范例1:对于此方法,它返回false。

Javascript

// Defining underscore contrib variable 
var _ = require('underscore-contrib');  
  
var bool = _.not( true ); 
  
console.log("Opposite boolean value if"
    + " value's truthiness is:", bool);

输出:

Opposite boolean value if value's truthiness is: false

范例2:如果为false,则此方法返回与true相反的值。

Javascript

// Defining underscore contrib variable 
var _ = require('underscore-contrib');  
  
var bool = _.not( false ); 
  
console.log("Opposite boolean value if"
    + " value's truthiness is:", bool);

输出:

Opposite boolean value if value's truthiness is: true

范例3:对于现有值,此方法返回false。

Javascript

// Defining underscore contrib variable 
var _ = require('underscore-contrib');  
  
var bool = _.not( "Geeks" ); 
  
console.log("Opposite boolean value if"
    + " value's truthiness is:",bool);

输出:

Opposite boolean value if value's truthiness is: false

范例4:对于不存在的值,此方法返回true。

Javascript

// Defining underscore contrib variable 
var _ = require('underscore-contrib');  
  
var bool = _.not( null ); 
  
console.log("Opposite boolean value if"
    + " value's truthiness is:", bool);

输出:

Opposite boolean value if value's truthiness is: true

相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Underscore.js _.not() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。