📜  Lodash _.bitwiseAnd() 方法

📅  最后修改于: 2022-05-13 01:56:19.291000             🧑  作者: Mango

Lodash _.bitwiseAnd() 方法

Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.bitwiseAnd() 方法用于返回对所有给定参数使用位与 (&)运算符的结果。

句法:

_.bitwiseAnd( val1, val2, ..., valn )

参数:此方法采用可变数量的参数并对它们进行按位与运算符。

返回值:此方法返回对所有参数使用按位与运算符的结果。

注意:这在普通 JavaScript 中不起作用,因为它需要安装 lodash.js contrib 库。 Lodash.js contrib 库可以使用npm install lodash-contrib –save 安装

示例 1:

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


Javascript
// Adding lodash-contrib library 
var _ = require('lodash-contrib'); 
  
// Using the _.bitwiseAnd() method
var bA  = _.bitwiseAnd( 1, 3, 4, 6 ); 
    
console.log("The bitwiseAnd is :", bA);


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


输出:

The bitwiseAnd is : 1

示例 2:

Javascript

// Adding lodash-contrib library 
var _ = require('lodash-contrib'); 
  
// Using the _.bitwiseAnd() method
var bA  = _.bitwiseAnd( 1, 3, 4, 6 ); 
    
console.log("The bitwiseAnd is :", bA);

输出:

The bitwiseAnd is : 0

示例 3:

Javascript

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

输出:

The bitwiseAnd is : 1