📜  Underscore.js _.bitwiseRight() 方法

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

Underscore.js _.bitwiseRight() 方法

这 _。 bitwiseRight () 方法返回对所有参数使用 >>运算符的结果。

句法:

_.bitwiseRight(val1, val2,..., valn);

参数:此方法需要 n 个值对其进行操作。

返回值:此方法返回在参数上使用 >>运算符的结果。

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

示例 1:

Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var bR  = _.bitwiseRight( 1, 3 );
  
console.log("The bitwiseRight is :", bR);


Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var bR  = _.bitwiseRight( 3, 1 );
  
console.log("The bitwiseRight is :", bR);


Javascript
// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var bR  = _.bitwiseRight( 1 );
  
console.log("The bitwiseRight is :", bR);


输出:

The bitwiseRight is : 0

示例 2:

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var bR  = _.bitwiseRight( 3, 1 );
  
console.log("The bitwiseRight is :", bR);

输出:

The bitwiseRight is : 1

示例 3:

Javascript

// Defining underscore contrib variable
var _ = require('underscore-contrib'); 
  
var bR  = _.bitwiseRight( 1 );
  
console.log("The bitwiseRight is :", bR);

输出:

The bitwiseRight is : 1