📅  最后修改于: 2023-12-03 15:17:25.331000             🧑  作者: Mango
Lodash是JavaScript的一个实用工具库,提供了很多简化开发的工具函数。其中,_.bitwiseAnd()方法可以对两个数执行按位与操作,并返回结果。
_.bitwiseAnd(value, other)
value
:(number) 要操作的第一个数。other
:(number) 要操作的第二个数。(number) 执行按位与操作的结果。
const _ = require('lodash');
console.log(_.bitwiseAnd(7, 3));
// => 3
console.log(_.bitwiseAnd(8, 3));
// => 0
在以上示例中,_.bitwiseAnd()方法会对7
和3
执行按位与操作,得到结果3
。
与此类似,对8
和3
执行按位与操作得到的结果为0
。
9007199254740991
(二进制为 0b111111111111111111111111111111111111111111111111111111111111111
)。