Created
August 6, 2014 03:27
-
-
Save evanlucas/63eb92f4d0a489f338ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> var a = '1.000' | |
undefined | |
> +(a).toFixed(2) | |
TypeError: Object 1.000 has no method 'toFixed' | |
at repl:1:7 | |
at REPLServer.self.eval (repl.js:110:21) | |
at Interface.<anonymous> (repl.js:239:12) | |
at Interface.emit (events.js:95:17) | |
at Interface._onLine (readline.js:202:10) | |
at Interface._line (readline.js:531:8) | |
at Interface._ttyWrite (readline.js:760:14) | |
at ReadStream.onkeypress (readline.js:99:10) | |
at ReadStream.emit (events.js:98:17) | |
at emitKey (readline.js:1095:12) | |
> Number(a).toFixed(2) | |
'1.00' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment