What is the output of the following code?
let a = 100; console.log( a.toString(10) ); console.log( a.toString(2) ); console.log( a.toString(16) );
Click to view the answer
100 1100100 64