1. Tostring
The toString() method is what it sounds, returns the number as a string. However, if you provide a parameter, such as 2, 8, or 16 it will return binary, octal or hexadecimal value respectively.
var num = 123;
num.toString();
// "123"
(100...