Lodash _.bitwiseNot() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.bitwiseNot() 方法用于返回对给定参数使用按位非运算符(~) 的结果。
句法:
_.bitwiseNot( value );
参数:此方法采用单个值作为参数,如上所述,如下所述:
- value:它是应用按位非运算符(~) 的值。
返回值:此方法返回对参数使用按位非运算符(~) 的结果。
注意:这在普通 JavaScript 中不起作用,因为它需要安装 lodash.js contrib 库。 Lodash.js contrib 库可以使用npm install lodash-contrib –save 安装。
示例 1:
Javascript
// Adding lodash-contrib library
var _ = require('lodash-contrib');
// Using the _.bitwiseNot() method
var bN = _.bitwiseNot( 1 );
console.log("The bitwiseNot is :", bN);
Javascript
// Adding lodash-contrib library
var _ = require('lodash-contrib');
// Using the _.bitwiseNot() method
var bN = _.bitwiseNot( 10 );
console.log("The bitwiseNot is :", bN);
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 : -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