Wednesday, July 3, 2024
HomeLanguagesJavascriptUnderscore.js _.bitwiseRight() Method

Underscore.js _.bitwiseRight() Method

The _.bitwiseRight() method returns the result of using the >> operator on all the arguments.

Syntax:

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

Parameters: This method takes n values to operate on them.

Return Value: This method returns the result of using the >> operator on the arguments.

Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed. Underscore.js contrib library can be installed using npm install underscore-contrib –save.

Example 1: 

Javascript




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


Output:

The bitwiseRight is : 0

Example 2:

Javascript




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


Output:

The bitwiseRight is : 1

Example 3: 

Javascript




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


Output:

The bitwiseRight is : 1

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Ted Musemwa
As a software developer I’m interested in the intersection of computational thinking and design thinking when solving human problems. As a professional I am guided by the principles of experiential learning; experience, reflect, conceptualise and experiment.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments