19 lines
No EOL
201 B
Markdown
19 lines
No EOL
201 B
Markdown
importance: 2
|
|
|
|
---
|
|
|
|
# Syntax check
|
|
|
|
What is the resule of this code?
|
|
|
|
|
|
```js no-beautify
|
|
let user = {
|
|
name: "John",
|
|
go: function() { alert(this.name) }
|
|
}
|
|
|
|
(user.go)()
|
|
```
|
|
|
|
P.S. There's a pitfall :) |