Bitwise Operators in JavaScript with Example (Hindi) JavaScript Tutorials

preview_player
Показать описание

/*******************************************\

/*******************************************\

Hashtags :

#javascript #bitwiseoperator #javascripttutorials

Tags :

what is bitwise operators ?
how bitwise operators works ?
what is right shift bitwise operator
what is left shift bitwise operator
operators in javascript
bitwise operators
bitwise and
bitwise or
bitwise xor
bitwise not
Рекомендации по теме
Комментарии
Автор

Aap sch me bahut hi acha explain krte h thank you so much u r a good lecturer😇❤

anjalisahni
Автор

🙏🙏Thanks Bhai nice video and the best skills 🙏🙏

SAMACH-ss
Автор

Amazing video you explained the topic so good love it

AyeshaManan-uieg
Автор

great video, thanks for sharing the concepts.

karmkarteraho
Автор

thank you brother good teaching skill

sagartheroxx
Автор

Nice tatorial dear. ab bhi jis ko smjhe nai ai us ka kaam programing nai hai. great video good teaching thanks

freelance
Автор

// Function
let num1 = parseInt(prompt("Enter the first number: "));
let num2 = parseInt(prompt("Enter the second number: "));

const bitwiseOperations = () => {
const andResult = num1 & num2;
const orResult = num1 | num2;
const xorResult = num1 ^ num2;

console.log(`${num1} & ${num2} = ${andResult} (Bitwise AND)`);
console.log(`${num1} | ${num2} = ${orResult} (Bitwise OR)`);
console.log(`${num1} ^ ${num2} = ${xorResult} (Bitwise XOR)`);
}

bitwiseOperations();

IqraMubeenOfficial
Автор

This is nice explanation about bitwise operators in javascript

infomedialounge
Автор

Wow Yarr Ky Samjaya h Tumne Kamal h
Keep it Up Bro 👍🏻👍🏻👍🏻

PrinceGupta-lnmh
Автор

Bit Wise left shift (10<< 2) left shift showing 40 but is coming 8 ? Can tell y

amigosfriends
visit shbcf.ru