|
||||||||||||
Converting Numbers to Another BaseQuestion: How do I convert a number to a different base (radix)?
Answer:
In JavaScript 1.1, you can use the standard method a = (32767).toString(16) // this gives "7fff" b = (255).toString(8) // this gives "377" c = (1295).toString(36) // this gives "zz" d = (127).toString(2) // this gives "1111111" However, in old browsers (supporting only JavaScript 1.0) there is no standard method for this conversion. Here is a function that does the conversion of integers to an arbitrary base (radix) in JavaScript 1.0: function toRadix(N,radix) { var HexN="", Q=Math.floor(Math.abs(N)), R; while (true) { R=Q%radix; HexN = "0123456789abcdefghijklmnopqrstuvwxyz".charAt(R)+HexN; Q=(Q-R)/radix; if (Q==0) break; } return ((N<0) ? "-"+HexN : HexN); } You can test this conversion right now:
JavaScripter.net.
Copyright
© 1999-2006, Alexei Kourbatov
|