Skip to content

Instantly share code, notes, and snippets.

@insthync
Created September 29, 2018 16:06
Show Gist options
  • Save insthync/5bada28c9568bd99a929ed91e23fa03f to your computer and use it in GitHub Desktop.
Save insthync/5bada28c9568bd99a929ed91e23fa03f to your computer and use it in GitHub Desktop.
Test bitwise shift (javascript)
var sum = 0;
for (var i = 0; i < 16; ++i)
{
console.log(1 << i);
sum += (1 << i);
}
console.log("sum : " + sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment