Wednesday, September 17, 2025
HomeLanguagesJavascriptLodash _.bitwiseXor() Method

Lodash _.bitwiseXor() Method

The Lodash _.bitwiseXor() method returns the result of using the Bitwise XOR (^) operator on all the given arguments.

Syntax:

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

Parameters: This method takes n values and operate them Bitwise XOR operation.

Return Value: This method returns the result of using the Bitwise XOR operator (^) on all the arguments.

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

Example 1:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var bX  = _.bitwiseXor( 1, 2, 3, 4 ); 
    
console.log("The bitwiseXor is :", bX);


Output:

The bitwiseXor is : 4

Example 2:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var bX  = _.bitwiseXor( 0, 8 ); 
    
console.log("The bitwiseXor is :", bX);


Output:

The bitwiseXor is : 8

Example 3:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var bX  = _.bitwiseXor( 1 ); 
    
console.log("The bitwiseXor is :", bX);


Output:

The bitwiseXor 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!
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
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