Skip to content

Instantly share code, notes, and snippets.

@nicholasaiello
Created October 18, 2017 05:48
Show Gist options
  • Save nicholasaiello/7f9d44042b18322f64330dd777296d4d to your computer and use it in GitHub Desktop.
Save nicholasaiello/7f9d44042b18322f64330dd777296d4d to your computer and use it in GitHub Desktop.
const powerOfTwo = (num) => (
(num & (num - 1)) === 0
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment