Los _. bitwiseRight() método r
Sintaxis:
_.bitwiseRight(val1, val2,..., valn);
Parámetros: Este método toma n valores para operar sobre ellos.
Valor de retorno: este método r
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones underscore.js. La biblioteca de contribuciones Underscore.js se puede instalar usando npm install underscore-contrib –save.
Ejemplo 1:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bR = _.bitwiseRight( 1, 3 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 0
Ejemplo 2:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bR = _.bitwiseRight( 3, 1 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 1
Ejemplo 3:
Javascript
// Defining underscore contrib variable var _ = require('underscore-contrib'); var bR = _.bitwiseRight( 1 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 1