Skip to content

Instantly share code, notes, and snippets.

@johnloy
Last active February 7, 2021 18:20
Show Gist options
  • Save johnloy/bcdd57bc75d6d5a715dc340184c45a37 to your computer and use it in GitHub Desktop.
Save johnloy/bcdd57bc75d6d5a715dc340184c45a37 to your computer and use it in GitHub Desktop.
Convert the string representation of a number to another base
function convertFromBaseToBase(str, fromBase, toBase) {
var num = parseInt(str, fromBase);
return num.toString(toBase);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment