Skip to content

Instantly share code, notes, and snippets.

@tonyonodi
Created December 29, 2014 22:42
Show Gist options
  • Save tonyonodi/8bd967b3375e2f5bf617 to your computer and use it in GitHub Desktop.
Save tonyonodi/8bd967b3375e2f5bf617 to your computer and use it in GitHub Desktop.
// 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