Last active
October 19, 2016 02:02
-
-
Save gabsprates/72f4a02a150da1cd9344ce73dbe4991d 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 foo = new Object() // {} | |
foo.toString() // ‘[object Object]’ | |
// Even to object | |
// that aren't empty | |
var bar = { lang: ‘js’, y: 94 } | |
foo.toString() // ‘[object Object]’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment