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


Lodash _.bitwiseNot()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。

_.bitwiseNot()方法用于返回在给定参数上使用按位NOT运算符(〜)的结果。

用法:

_.bitwiseNot( value );

参数:如上所述,此方法将单个值作为参数,并在下面进行描述:

  • value:它是在其上应用按位NOT运算符(〜)的值。

返回值:此方法返回对参数使用按位NOT运算符(〜)的结果。



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

范例1:

Javascript

// Adding lodash-contrib library  
var _ = require('lodash-contrib');  
  
// Using the _.bitwiseNot() method 
var bN  = _.bitwiseNot( 1 );  
    
console.log("The bitwiseNot is:", bN);

输出:

The bitwiseNot is:-2

范例2:

Javascript

// Adding lodash-contrib library  
var _ = require('lodash-contrib');  
  
// Using the _.bitwiseNot() method 
var bN  = _.bitwiseNot( 10 );  
    
console.log("The bitwiseNot is:", bN);

输出:

The bitwiseNot is:-11

范例3:

Javascript

// Adding lodash-contrib library  
var _ = require('lodash-contrib');  
  
// Using the _.bitwiseNot() method 
var bN  = _.bitwiseNot( 100 );  
    
console.log("The bitwiseNot is:", bN);

输出:

The bitwiseNot is:-101

相关用法


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