I'm trying to do
458.toString()
and its giving error (Uncaught SyntaxError: Unexpected token ILLEGAL). Then after trying/searching some other process they worked. eg.
458 .toString();
458..toString();
(458).toString();
I understand #3, but not well about #1 and #2. Please help me with explanation of #1 and #2 statement.