Skip to content

Instantly share code, notes, and snippets.

@kharioki
Last active July 4, 2021 10:52
Show Gist options
  • Save kharioki/04a27d7f6a65d75e26204186201ed871 to your computer and use it in GitHub Desktop.
Save kharioki/04a27d7f6a65d75e26204186201ed871 to your computer and use it in GitHub Desktop.
countBits
const countBits = n => n.toString(2).split('0').join('').length
countBits(1234);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment