Lodash es una biblioteca de JavaScript que funciona en la parte superior de underscore.js. Lodash ayuda a trabajar con arrays, strings, objetos, números, etc.
El método _.bitwiseRight() se usa para devolver el resultado de usar el operador Bitwise Right (>>) en todos los argumentos dados.
Sintaxis:
_.bitwiseRight( val1, val2,..., valn )
Parámetros: Este método toma un número variable de parámetros y opera el operador Bitwise Right sobre ellos.
Valor devuelto: este método devuelve el resultado de usar el operador Bitwise Right (>>) en todos los argumentos.
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca de contribuciones lodash.js. La biblioteca de contribuciones de Lodash.js se puede instalar usando npm install lodash-contrib –save .
Ejemplo 1:
Javascript
// Adding lodash-contrib library var _ = require('lodash-contrib'); // Using the _.bitwiseRight() method var bR = _.bitwiseRight( 1, 3 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 0
Ejemplo 2:
Javascript
// Adding lodash-contrib library var _ = require('lodash-contrib'); // Using the _.bitwiseRight() method var bR = _.bitwiseRight( 5, 1 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 2
Ejemplo 3:
Javascript
// Adding lodash-contrib library var _ = require('lodash-contrib'); // Using the _.bitwiseRight() method var bR = _.bitwiseRight( 1 ); console.log("The bitwiseRight is :", bR);
Producción:
The bitwiseRight is : 1
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA