Last active
July 4, 2021 10:52
-
-
Save kharioki/04a27d7f6a65d75e26204186201ed871 to your computer and use it in GitHub Desktop.
countBits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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