I know that 0x is a prefix for hexadecimal numbers in Javascript. For example, 0xFF stands for the number 255.
0x
0xFF
Is there something similar f
May be this will usefull:
var bin = 1111; var dec = parseInt(bin, 2); // 15