Created
December 29, 2014 22:42
-
-
Save tonyonodi/8bd967b3375e2f5bf617 to your computer and use it in GitHub Desktop.
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
// Prototypeless objects in JS | |
var map = Object.create(null); // null has no protype or properties | |
"toString" in map; | |
// false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment