Created
May 31, 2018 18:31
-
-
Save gladchinda/3a5e176ddb3c1983985a185f9b82be32 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
| console.log(100 + ''); // "100" | |
| console.log(null + ''); // "null" | |
| console.log(void 0 + ''); // "undefined" | |
| console.log(true + ''); // "true" | |
| console.log(false + ''); // "false" | |
| console.log([] + ''); // "" | |
| console.log([100] + ''); // "100" | |
| console.log([100, 50] + ''); // "100,50" | |
| console.log({} + ''); // "[object Object]" | |
| console.log(new Date + ''); // "Thu May 31 2018 19:28:09 GMT+0100 (WAT)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment