console.log(5.toString()); // SyntaxError console.log(5.1.toString()); // 5.1
alert(5..toString()); alert((5).toString());