Underscore.js _.bitwiseNot() 方法
这 _。 bitwiseNot () 方法 r返回在参数上使用 ~运算符的结果。
句法:
_.bitwiseNot( value );
参数:这个方法接受一个值来操作~运算符。
返回值:此方法返回在参数上使用 ~运算符的结果。
注意:这在普通 JavaScript 中不起作用,因为它需要安装 underscore.js contrib 库。 Underscore.js contrib 库可以使用npm install underscore-contrib –save 安装。
示例 1:
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var bN = _.bitwiseNot( 1 );
console.log("The bitwiseNot is :", bN);
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var bN = _.bitwiseNot( 10 );
console.log("The bitwiseNot is :", bN);
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var bN = _.bitwiseNot( 100 );
console.log("The bitwiseNot is :", bN);
输出:
The bitwiseNot is : -2
示例 2:
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var bN = _.bitwiseNot( 10 );
console.log("The bitwiseNot is :", bN);
输出:
The bitwiseNot is : -11
示例 3:
Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var bN = _.bitwiseNot( 100 );
console.log("The bitwiseNot is :", bN);
输出:
The bitwiseNot is : -101