Created
April 4, 2017 17:33
-
-
Save tgittos/109ee0f7aba76063de7407800e3cf000 to your computer and use it in GitHub Desktop.
Why I hate Javascript
This file contains 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
// Dumb date handling across browsers | |
// Chrome: | |
new Date('2017-4-3') | |
// Mon Apr 03 2017 00:00:00 GMT-0500 (CDT) | |
// Firefox | |
new Date('2017-4-3') | |
// Date 2017-04-03T00:00:00.000Z | |
// Dumb type handling | |
typeof "foo" | |
// "string" | |
foo instanceof string | |
/* VM3913:1 Uncaught ReferenceError: string is not defined | |
at <anonymous>:1:16 | |
(anonymous) @ VM3913:1 */ | |
foo instanceof String | |
//false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment