Skip to content

Instantly share code, notes, and snippets.

@una-ada
Created May 25, 2021 04:28
Show Gist options
  • Save una-ada/6bcc3543b703200ca9dc84a3bfaa2c71 to your computer and use it in GitHub Desktop.
Save una-ada/6bcc3543b703200ca9dc84a3bfaa2c71 to your computer and use it in GitHub Desktop.
const digitCount = n => {
var i = 0;
for(; 10**i <= n; i++);
return i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment