Skip to content

Instantly share code, notes, and snippets.

@kzar
Last active August 29, 2015 14:27
Show Gist options
  • Save kzar/0653cb5d888a97ab1951 to your computer and use it in GitHub Desktop.
Save kzar/0653cb5d888a97ab1951 to your computer and use it in GitHub Desktop.
Interesting JavaScript oddities
// http://perfectionkills.com/understanding-delete/
var foo = 1;
bar = 2;
eval("var bob = 3;");
// Object.getOwnPropertyDescriptor(this, "foo").configurable === false
// Object.getOwnPropertyDescriptor(this, "bar").configurable === true
// Object.getOwnPropertyDescriptor(this, "bob").configurable === true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment