Created
April 24, 2013 03:53
-
-
Save binnng/5449490 to your computer and use it in GitHub Desktop.
属性是可以通过delete操作符删除的,而变量是不能的。
This file contains hidden or 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
| 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