Skip to content

Commit 294dc1a

Browse files
authored
Add files via upload
1 parent 0bb6b9d commit 294dc1a

File tree

1 file changed

+19
-0
lines changed
  • 1-js/99-js-misc/04-reference-type/2-check-syntax

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
importance: 2
2+
3+
---
4+
5+
### Проверка синтаксиса
6+
7+
Каким будет результат выполнения этого кода?
8+
9+
10+
```js no-beautify
11+
let user = {
12+
name: "John",
13+
go: function() { alert(this.name) }
14+
}
15+
16+
(user.go)()
17+
```
18+
19+
P.S. Здесь есть подвох :)

0 commit comments

Comments
 (0)