Skip to content

Instantly share code, notes, and snippets.

@binnng
Created April 24, 2013 03:53
Show Gist options
  • Select an option

  • Save binnng/5449490 to your computer and use it in GitHub Desktop.

Select an option

Save binnng/5449490 to your computer and use it in GitHub Desktop.
属性是可以通过delete操作符删除的,而变量是不能的。
var c = 1;
delete c; //false
d = 1;
delete d; //true
window.e = 1;
delete e; //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment