Skip to content

Instantly share code, notes, and snippets.

@a-eid
Last active November 19, 2016 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-eid/4a92b4bddf4fe6c5e72a4174e5f56fe2 to your computer and use it in GitHub Desktop.
Save a-eid/4a92b4bddf4fe6c5e72a4174e5f56fe2 to your computer and use it in GitHub Desktop.
example base conversion
function toBase(number , base){
var s = ""
do{
// binary reads from right to left
s = String(number % base) + s
number = Math.floor(number / base)
}while (number > 0)
return s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment