Bitwise Operators In Javascript With Practical | Lecture 13🔥 Javascript for beginners by Nirbhay

preview_player
Показать описание
#javascript #hindi #bitwise

Jai_Hind, Dosto, aaj ki is video me , maine aapko btaya hai ki Bitwise operators kya aur kon kon se hote hai,... practically humne samjhne ki kosis ki hai..,
aasha karta hun aapko ye video pasand aaega.., agar video pasand aae to please video ko LIKE aur SHARE kar dena..,
Thank You !

--------------------------------------------------------
Please Subscribe For More Videos !
--------------------------------------------------------
Thank You !

Operator,
operators,
javascript,
operators in javascript.
javascript operator,
arithmetic operators,
assignment operator,
types of operators,
bitwise operators,
logical operators,
comparison operators,
greater than operator,
equal operators,
operators by nirbhay,
what is comparison operator,
comparison operator practical,
logical,
logical operators,
logical operators in javascript,
javascript logical operators,
bitwise,
bitwise operator,
bitwise operators,
bitwise operators in hindi,
bitwise and operator,
bitwise operator practical,
bitwise or operator,
bitwise xor operator,
bitwise not operator,
bitwise left shift operator,
bitwise right shift operator,
bitwise unsigned right shift operators,
bitwise operators by nirbhay kaushik,
Рекомендации по теме
Комментарии
Автор

For NOT ~ (tilt)
The code is;

let x = 5;
x = ~5;
console.log(x); // Output: -6

Barbie
Автор

Thanks for you to make this concept the easiest

AbdullahAkhtar-moro
Автор

Sach me sir bhot acha parhya apne ji mujhe sab samjh aa gya

ramansaimplay
Автор

very well explained. loved it! subscribed!

raggedythespi
Автор

This video is the solution to the bitwise concept

AbdullahAkhtar-moro
Автор

Thank You Sir!
Love from Pakistan...

codewithsaad
Автор

I am confused about the NOT operator because the result is not matching 😥😥😥😥.

bishwajitdebnath
Автор

where does this bitwise operators used in real life? like other operators like arithmetic, logical operator we know when to use but when shall we use bitwise operator wo to batao

TheTrueGuyYouTube
Автор

सभी प्रोग्रामिंग भासा का अलग ऑपरेटर होता हैं किया सर

tulshikumar
Автор

why Bitwise operator not works in 64 bit machinary??

varun
Автор

sir pls upload more video. views aate hai ya nahi iss ko maat dekho ek time par code with harry par views nahi aate thai par aab dekho kitne sare subscribers hai. 50K code with harry ke subscribers thay tab se mai unko dekh raha hu. aap ke videos mai quality milti hai pls aapne talent ko maaro maat. i know ki videos mai bahut time jata hai

I_Love_India
Автор

For ~ (tilt) NOT
The execution is;

let x = 5;
let result = ~num;
console.log(result); // Output: -6

VBot-yvrb
Автор

~5 is not 10 it is -6 u have to explain that

sanjaygautam
Автор

For NOT ~ (tilt)
The output is;

let x = 5;
x = ~5;
console.log(x); // Output: -6

VBot-yvrb