Skip to content

Instantly share code, notes, and snippets.

@xerosanyam
Created December 19, 2017 10:07
Show Gist options
  • Save xerosanyam/c4d1920cc67469d369bb946f43e5aeb0 to your computer and use it in GitHub Desktop.
Save xerosanyam/c4d1920cc67469d369bb946f43e5aeb0 to your computer and use it in GitHub Desktop.
function countDigits(digits){
var i = 0;
while(digits>0){
i++
digits = parseInt(digits/10)
}
console.log(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment