Created
February 22, 2017 14:07
-
-
Save nicolasblanco/c685b1aac4055d727264d7dac38b05f2 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
| !!undefined | |
| // false | |
| !!"" | |
| // false | |
| !!0 | |
| // false | |
| !!null | |
| // false | |
| !!1 | |
| // true | |
| !!{} | |
| // true | |
| !!"foo" | |
| // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment