These functions take radix
as an argument:
num.toString(radix);
parseInt("123", radix);
Is there any other function or method that takes radix
(number base),
because I would want to use something like parseFloat("1A.B4",radix)
.
But since I don't imagine there is a lot of them, please name any of them if you know, could be useful, thanks.
Edit: Yes parseFloat("1A.B4",16)should be 26.703125. If you look at , num.toString(radix) it supports bases from 2 to 36
In Firefox console (333.444).toString(36) equals "99.fzf9i56mi"