Bitwise Operators JavaScript

preview_player
Показать описание
Bitwise Operators , And, OR , exclusive OR ( XOR ) , NOT , Zero fill left shift , Signed right shift , Zero fill right shift in JavaScript

#bitwise #operator #javaScript

★★E-degree to do with Eduonix★★ ( Apply coupon - "TECH20" to get 20% off!)

*My Udemy Courses

Follow me for technology updates

Help me translate this video.
Рекомендации по теме
Комментарии
Автор

Great stuff.. One little note: "Binary operator" refers to arity - that it uses 2 operands not that the operands are in binary. There are also ternary (?:) and unary operators (++) . The operators we're talking about are logical / Boolean operators - they're often used interchangeably, but some materials make the distinction

bluescanfly
Автор

You are always the best. Thank you for zooming your screen to aid your viewers in seeing the code better.

paschalynukwuani
Автор

Your tutorial broke through my mental block on Bitwise Operators. Thank you for making it so easy to understand.

liveandlearn
Автор

Great video! you simplified what MDN Docs had me scratching my head at. Earned a subscriber.

lend
Автор

Man, THANK YOU VERY MUCH! I finally understood this, dude! I'm reading the book Cracking the Coding Interview and one problem there has two different implementations. One of them has bitwise operation. You freaking saved me!

BrasilEmFatos
Автор

The first application that came to my mind was checking if a number is odd or even with:
`let isOdd = number & 1 ? true : false;`

IvanHaha
Автор

thank you so much. this is a well detailed video

elenduchinazo
Автор

thank you for this tutorial, I have learned something !!!

maskman
Автор

tbh sir i love the way you explain it to me ... i wish you would share your knowledge to us <3 .... may god bless you !

krisnarusdiono
Автор

concept is clear no doubt, can you please give a real world example or any algorithm where we can use it.
Thanks

ArjunSingh-oomh
Автор

thank you! thank you! thanks a million.

isratjaman
Автор

would have been nice to see some applications as well, if one just sees how something works, but no real world application, one is bound to forget it. Thanks for the video though!

TheCodingOdyssey
Автор

alright techsith, I get it and I did learn something new, thank you. it reminds me of some Logic problems I've looked at before... but I can't help to wonder (as a new programmer) why? why so much sweet number logic? Wasn't binary enough in the first place? also, I'll gladly translate your video to spanish if nobody has already.

nadaing
Автор

Can u pls give more real world examples in javascript for this

saisagarsharma
Автор

Hi! please help me to convert this array var [-1, 0, 12, 5, -23] to [1, 0, -12, -5, 23] without using loop.

bikisaha
Автор

Other than video tutorials what will be the best websites to learn javascript and new features ofJavascript?

diwakarprasad
Автор

The best example is to tell an odd or even number :
getEvenOrOddNumber(68) // output : 68 is Even number
getEvenOrOddNumber(73) // output : 73 is Odd number
function getEvenOrOddNumber(num) {
let temp = num & 1 ? true : false
if (temp) console.log(`${num} is Odd number`)
if (!temp) console.log(`${num} is Even number`)
}

maskman
Автор

thanks for your video. create a video about how to create mini project, with good coding style with vue js

sumitmobiotics
Автор

SIr - Please post on GraphQL if possible

GaneshKumar-fvcg
Автор

i am stuck on server-side rendering can anyone help me?

loveneetsingh