Created
July 4, 2014 08:21
-
-
Save ziyunfei/3bedecf3316d57558f1e to your computer and use it in GitHub Desktop.
@@unscopables
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 x = 1, y = 2, obj = {x:3, y:4} | |
with(obj) { | |
console.log(x, y) // 3, 4 | |
obj[Symbol.unscopables] = { | |
x: true, | |
y: true | |
} | |
console.log(x, y) // 1, 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gist就是存代码片段的地方啊 高端 不会用