B Search Erros
Return Home
Newest questions tagged javascript - Stack Overflow

Is there a way to convert numbers between different bases without going through base 10 in Javascript?

I am aware that you can convert radix strings to base-10 and vice versa using the parseInt(string, radix) and toString(radix) methods respectively in JavaScript, but I would like to convert a non-base-10 number to anothe

View original source