We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832eb99 commit 1d594c6Copy full SHA for 1d594c6
1 file changed
TheDefinitiveGuide6/README.md
@@ -101,3 +101,27 @@ p.r() // => 1.414...
101
### Client-Side
102
103
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
120
+x
121
+++
122
+y
123
+// same as following:
124
+x; ++y;
125
+// not this:
126
+x++; y;
127
0 commit comments