Skip to content

Commit 04f60cf

Browse files
committed
Update solution.md
1 parent 316d170 commit 04f60cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • 1-js/5-functions-closures/1-global-object/1-window-and-variable

1-js/5-functions-closures/1-global-object/1-window-and-variable/solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Ответ: `1`.
22

33
```js
4-
//+ run untrusted refresh
4+
//+ run no-strict untrusted refresh
55
if ("a" in window) {
66
var a = 1;
77
}
@@ -21,4 +21,4 @@ if ("a" in window) { // в if видно что window.a уже есть
2121
alert( a );
2222
```
2323

24-
В результате `a` становится `1`.
24+
В результате `a` становится `1`.

0 commit comments

Comments
 (0)