Created
November 25, 2015 21:53
-
-
Save iburlakov/621cfae521ee2aaaeca9 to your computer and use it in GitHub Desktop.
Calculate amount of 1 digits in given number
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
// calculate amount of 1 digits in given number | |
function calc(num) { | |
var digits = 0; | |
do { | |
if (num & 1) { | |
digits++; | |
} | |
num = num >>> 1 | |
} while (num != 0); | |
return digits; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment