Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 26, 2015 10:49
Show Gist options
  • Select an option

  • Save qetr1ck-op/99be3a7345429941c2eb to your computer and use it in GitHub Desktop.

Select an option

Save qetr1ck-op/99be3a7345429941c2eb to your computer and use it in GitHub Desktop.
var data = Object.create(null);
data.text = "Hello!";
console.log(data.text); // Hello!
console.log(data.toString); // undefined
console.log(data.__proto__);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment