Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created May 31, 2018 18:31
Show Gist options
  • Select an option

  • Save gladchinda/3a5e176ddb3c1983985a185f9b82be32 to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/3a5e176ddb3c1983985a185f9b82be32 to your computer and use it in GitHub Desktop.
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