en.javascript.info/1-js/5-functions-closures/1-global-object/1-window-and-variable/solution.md
2015-03-10 12:36:58 +03:00

24 lines
No EOL
496 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Ответ: `1`.
```js
//+ run untrusted refresh
if ("a" in window) {
var a = 1;
}
alert( a );
```
Посмотрим, почему.
На стадии подготовки к выполнению, из `var a` создается `window.a`:
```js
// window = {a:undefined}
if ("a" in window) { // в if видно что window.a уже есть
var a = 1; // поэтому эта строка сработает
}
alert( a );
```
В результате `a` становится `1`.