Skip to content

Instantly share code, notes, and snippets.

@ziyunfei
Created July 4, 2014 08:21
Show Gist options
  • Save ziyunfei/3bedecf3316d57558f1e to your computer and use it in GitHub Desktop.
Save ziyunfei/3bedecf3316d57558f1e to your computer and use it in GitHub Desktop.
@@unscopables
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
}
@ericdum
Copy link

ericdum commented Jul 4, 2014

gist就是存代码片段的地方啊 高端 不会用

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment