Skip to content

Instantly share code, notes, and snippets.

@sinegar
Created October 11, 2012 03:53
Show Gist options
  • Save sinegar/3870061 to your computer and use it in GitHub Desktop.
Save sinegar/3870061 to your computer and use it in GitHub Desktop.
return the nearest power of two
function(i) {
var v=i-1;
return (v|v>>1|v>>2|v>>3|v>>4|v>>5|v>>6|v>>7|v>>8)+1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment