Wednesday, September 17, 2025
HomeLanguagesJavascriptUnderscore.js _.bitwiseLeft() Method

Underscore.js _.bitwiseLeft() Method

The _.bitwiseLeft() method returns the result of using the << operator on all the arguments.

Syntax:

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

Parameters: This method returns 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 bL  = _.bitwiseLeft( 1, 3 );
  
console.log("The bitwiseLeft is :", bL);


Output:

The bitwiseLeft is : 8

Example 2:

Javascript




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


Output:

The bitwiseLeft is : 32

Example 3: 

Javascript




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


Output:

The bitwiseLeft 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!
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11833 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7050 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS