Skip to content

Commit 1d594c6

Browse files
committed
finished ch2
1 parent 832eb99 commit 1d594c6

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

TheDefinitiveGuide6/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,27 @@ p.r() // => 1.414...
101101
### Client-Side
102102

103103
see [calculator](http://readinglab.github.io/JavaScript/calcuator)
104+
105+
# Part I Core JavaScript
106+
## Chapter 2 Lexical Structure
107+
108+
- Unicode character
109+
- a number of global variables and functions
110+
```js
111+
arguments encodeURL Infinity Number RegExp
112+
Array encodeURIComponent isFinite Object String
113+
Boolean Error isNaN parseFloat SyntaxError
114+
Date eval JSON parseInt TypeError
115+
decodeURI EvalError Math RangeError undefined
116+
decodeURIComponent Function NaN ReferenceError URIError
117+
```
118+
- notify the optional semicolons.
119+
```js
120+
x
121+
++
122+
y
123+
// same as following:
124+
x; ++y;
125+
// not this:
126+
x++; y;
127+
```

0 commit comments

Comments
 (0)