Skip to content

Instantly share code, notes, and snippets.

@timohausmann
Created June 28, 2013 10:28
Show Gist options
  • Select an option

  • Save timohausmann/5883813 to your computer and use it in GitHub Desktop.

Select an option

Save timohausmann/5883813 to your computer and use it in GitHub Desktop.
Bitwise operations
//Math.floor( a * 2 )
a = a << 1
// Math.floor( a / 2 )
a = a >> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment