Skip to content Skip to sidebar Skip to footer
Showing posts with the label Bitwise Operators

Javascript Bitwise Operator Confusion

I'm trying to do some bitwise operations in Javascript, 0xff000000 | 0x00aabbcc Which I expect… Read more Javascript Bitwise Operator Confusion

Algorith Problem Decode Hex To Set Output

I got an algorithm that I need to solve. Unfortunately, I can't even find a clue about a soluti… Read more Algorith Problem Decode Hex To Set Output

Javascript -- Pass A Boolean (or Bitwise) Operator As An Argument?

In C# there are various ways to do this C# Pass bitwise operator as parameter specifically the '… Read more Javascript -- Pass A Boolean (or Bitwise) Operator As An Argument?

What Does 'x << ~y' Represent In JavaScript?

What does 'x Solution 1: x << -n is equal to x << (32 - n) ~3 == -4 so 5 &l… Read more What Does 'x << ~y' Represent In JavaScript?