-
Notifications
You must be signed in to change notification settings - Fork 29
/
ecmabot-reference.json
643 lines (643 loc) · 41.5 KB
/
ecmabot-reference.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
[
{"id": "introduction", "title": "Introduction"},
{"id": "x1", "title": "1 Scope"},
{"id": "x2", "title": "2 Conformance"},
{"id": "x3", "title": "3 Normative references"},
{"id": "x4", "title": "4 Overview"},
{"id": "x4.1", "title": "4.1 Web Scripting"},
{"id": "x4.2", "title": "4.2 Language Overview"},
{"id": "x4.2.1", "title": "4.2.1 Objects"},
{"id": "x4.2.2", "title": "4.2.2 The Strict Variant of ECMAScript"},
{"id": "x4.3", "title": "4.3 Definitions"},
{"id": "x4.3.1", "title": "4.3.1 type"},
{"id": "x4.3.2", "title": "4.3.2 primitive value"},
{"id": "x4.3.3", "title": "4.3.3 object"},
{"id": "x4.3.4", "title": "4.3.4 constructor"},
{"id": "x4.3.5", "title": "4.3.5 prototype"},
{"id": "x4.3.6", "title": "4.3.6 native object"},
{"id": "x4.3.7", "title": "4.3.7 built-in object"},
{"id": "x4.3.8", "title": "4.3.8 host object"},
{"id": "x4.3.9", "title": "4.3.9 undefined value"},
{"id": "x4.3.10", "title": "4.3.10 Undefined type"},
{"id": "x4.3.11", "title": "4.3.11 null value"},
{"id": "x4.3.12", "title": "4.3.12 Null type"},
{"id": "x4.3.13", "title": "4.3.13 Boolean value"},
{"id": "x4.3.14", "title": "4.3.14 Boolean type"},
{"id": "x4.3.15", "title": "4.3.15 Boolean object"},
{"id": "x4.3.16", "title": "4.3.16 String value"},
{"id": "x4.3.17", "title": "4.3.17 String type"},
{"id": "x4.3.18", "title": "4.3.18 String object"},
{"id": "x4.3.19", "title": "4.3.19 Number value"},
{"id": "x4.3.20", "title": "4.3.20 Number type"},
{"id": "x4.3.21", "title": "4.3.21 Number object"},
{"id": "x4.3.22", "title": "4.3.22 Infinity"},
{"id": "x4.3.23", "title": "4.3.23 NaN"},
{"id": "x4.3.24", "title": "4.3.24 function"},
{"id": "x4.3.25", "title": "4.3.25 built-in function"},
{"id": "x4.3.26", "title": "4.3.26 property"},
{"id": "x4.3.27", "title": "4.3.27 method"},
{"id": "x4.3.28", "title": "4.3.28 built-in method"},
{"id": "x4.3.29", "title": "4.3.29 attribute"},
{"id": "x4.3.30", "title": "4.3.30 own property"},
{"id": "x4.3.31", "title": "4.3.31 inherited property"},
{"id": "x5", "title": "5 Notational Conventions"},
{"id": "x5.1", "title": "5.1 Syntactic and Lexical Grammars"},
{"id": "x5.1.1", "title": "5.1.1 Context-Free Grammars"},
{"id": "x5.1.2", "title": "5.1.2 The Lexical and RegExp Grammars"},
{"id": "x5.1.3", "title": "5.1.3 The Numeric String Grammar"},
{"id": "x5.1.4", "title": "5.1.4 The Syntactic Grammar"},
{"id": "x5.1.5", "title": "5.1.5 The JSON Grammar"},
{"id": "x5.1.6", "title": "5.1.6 Grammar Notation"},
{"id": "x5.2", "title": "5.2 Algorithm Conventions"},
{"id": "x6", "title": "6 Source Text"},
{"id": "x7", "title": "7 Lexical Conventions"},
{"id": "x7.1", "title": "7.1 Unicode Format-Control Characters"},
{"id": "x7.2", "title": "7.2 White Space"},
{"id": "x7.3", "title": "7.3 Line Terminators"},
{"id": "x7.4", "title": "7.4 Comments"},
{"id": "x7.5", "title": "7.5 Tokens"},
{"id": "x7.6", "title": "7.6 Identifier Names and Identifiers"},
{"id": "x7.6.1", "title": "7.6.1 Reserved Words"},
{"id": "x7.6.1.1", "title": "7.6.1.1 Keywords"},
{"id": "x7.6.1.2", "title": "7.6.1.2 Future Reserved Words"},
{"id": "x7.7", "title": "7.7 Punctuators"},
{"id": "x7.8", "title": "7.8 Literals"},
{"id": "x7.8.1", "title": "7.8.1 Null Literals"},
{"id": "x7.8.2", "title": "7.8.2 Boolean Literals"},
{"id": "x7.8.3", "title": "7.8.3 Numeric Literals"},
{"id": "x7.8.4", "title": "7.8.4 String Literals"},
{"id": "x7.8.5", "title": "7.8.5 Regular Expression Literals"},
{"id": "x7.9", "title": "7.9 Automatic Semicolon Insertion"},
{"id": "x7.9.1", "title": "7.9.1 Rules of Automatic Semicolon Insertion"},
{"id": "x7.9.2", "title": "7.9.2 Examples of Automatic Semicolon Insertion"},
{"id": "x8", "title": "8 Types"},
{"id": "x8.1", "title": "8.1 The Undefined Type"},
{"id": "x8.2", "title": "8.2 The Null Type"},
{"id": "x8.3", "title": "8.3 The Boolean Type"},
{"id": "x8.4", "title": "8.4 The String Type"},
{"id": "x8.5", "title": "8.5 The Number Type"},
{"id": "x8.6", "title": "8.6 The Object Type"},
{"id": "x8.6.1", "title": "8.6.1 Property Attributes"},
{"id": "x8.6.2", "title": "8.6.2 Object Internal Properties and Methods"},
{"id": "x8.7", "title": "8.7 The Reference Specification Type"},
{"id": "x8.7.1", "title": "8.7.1 GetValue (V)"},
{"id": "x8.7.2", "title": "8.7.2 PutValue (V, W)"},
{"id": "x8.8", "title": "8.8 The List Specification Type"},
{"id": "x8.9", "title": "8.9 The Completion Specification Type"},
{"id": "x8.10", "title": "8.10 The Property Descriptor and Property Identifier Specification Types"},
{"id": "x8.10.1", "title": "8.10.1 IsAccessorDescriptor ( Desc )"},
{"id": "x8.10.2", "title": "8.10.2 IsDataDescriptor ( Desc )"},
{"id": "x8.10.3", "title": "8.10.3 IsGenericDescriptor ( Desc )"},
{"id": "x8.10.4", "title": "8.10.4 FromPropertyDescriptor ( Desc )"},
{"id": "x8.10.5", "title": "8.10.5 ToPropertyDescriptor ( Obj )"},
{"id": "x8.11", "title": "8.11 The Lexical Environment and Environment Record Specification Types"},
{"id": "x8.12", "title": "8.12 Algorithms for Object Internal Methods"},
{"id": "x8.12.1", "title": "8.12.1 [[GetOwnProperty]] (P)"},
{"id": "x8.12.2", "title": "8.12.2 [[GetProperty]] (P)"},
{"id": "x8.12.3", "title": "8.12.3 [[Get]] (P)"},
{"id": "x8.12.4", "title": "8.12.4 [[CanPut]] (P)"},
{"id": "x8.12.5", "title": "8.12.5 [[Put]] ( P, V, Throw )"},
{"id": "x8.12.6", "title": "8.12.6 [[HasProperty]] (P)"},
{"id": "x8.12.7", "title": "8.12.7 [[Delete]] (P, Throw)"},
{"id": "x8.12.8", "title": "8.12.8 [[DefaultValue]] (hint)"},
{"id": "x8.12.9", "title": "8.12.9 [[DefineOwnProperty]] (P, Desc, Throw)"},
{"id": "x9", "title": "9 Type Conversion and Testing"},
{"id": "x9.1", "title": "9.1 ToPrimitive"},
{"id": "x9.2", "title": "9.2 ToBoolean"},
{"id": "x9.3", "title": "9.3 ToNumber"},
{"id": "x9.3.1", "title": "9.3.1 ToNumber Applied to the String Type"},
{"id": "x9.4", "title": "9.4 ToInteger"},
{"id": "x9.5", "title": "9.5 ToInt32: (Signed 32 Bit Integer)"},
{"id": "x9.6", "title": "9.6 ToUint32: (Unsigned 32 Bit Integer)"},
{"id": "x9.7", "title": "9.7 ToUint16: (Unsigned 16 Bit Integer)"},
{"id": "x9.8", "title": "9.8 ToString"},
{"id": "x9.8.1", "title": "9.8.1 ToString Applied to the Number Type"},
{"id": "x9.9", "title": "9.9 ToObject"},
{"id": "x9.10", "title": "9.10 CheckObjectCoercible"},
{"id": "x9.11", "title": "9.11 IsCallable"},
{"id": "x9.12", "title": "9.12 The SameValue Algorithm"},
{"id": "x10", "title": "10 Executable Code and Execution Contexts"},
{"id": "x10.1", "title": "10.1 Types of Executable Code"},
{"id": "x10.1.1", "title": "10.1.1 Strict Mode Code"},
{"id": "x10.2", "title": "10.2 Lexical Environments"},
{"id": "x10.2.1", "title": "10.2.1 Environment Records"},
{"id": "x10.2.1.1", "title": "10.2.1.1 Declarative Environment Records"},
{"id": "x10.2.1.1.1", "title": "10.2.1.1.1 HasBinding(N)"},
{"id": "x10.2.1.1.2", "title": "10.2.1.1.2 CreateMutableBinding (N, D)"},
{"id": "x10.2.1.1.3", "title": "10.2.1.1.3 SetMutableBinding (N,V,S)"},
{"id": "x10.2.1.1.4", "title": "10.2.1.1.4 GetBindingValue(N,S)"},
{"id": "x10.2.1.1.5", "title": "10.2.1.1.5 DeleteBinding (N)"},
{"id": "x10.2.1.1.6", "title": "10.2.1.1.6 ImplicitThisValue()"},
{"id": "x10.2.1.1.7", "title": "10.2.1.1.7 CreateImmutableBinding (N)"},
{"id": "x10.2.1.1.8", "title": "10.2.1.1.8 InitializeImmutableBinding (N,V)"},
{"id": "x10.2.1.2", "title": "10.2.1.2 Object Environment Records"},
{"id": "x10.2.1.2.1", "title": "10.2.1.2.1 HasBinding(N)"},
{"id": "x10.2.1.2.2", "title": "10.2.1.2.2 CreateMutableBinding (N, D)"},
{"id": "x10.2.1.2.3", "title": "10.2.1.2.3 SetMutableBinding (N,V,S)"},
{"id": "x10.2.1.2.4", "title": "10.2.1.2.4 GetBindingValue(N,S)"},
{"id": "x10.2.1.2.5", "title": "10.2.1.2.5 DeleteBinding (N)"},
{"id": "x10.2.1.2.6", "title": "10.2.1.2.6 ImplicitThisValue()"},
{"id": "x10.2.2", "title": "10.2.2 Lexical Environment Operations"},
{"id": "x10.2.2.1", "title": "10.2.2.1 GetIdentifierReference (lex, name, strict)"},
{"id": "x10.2.2.2", "title": "10.2.2.2 NewDeclarativeEnvironment (E)"},
{"id": "x10.2.2.3", "title": "10.2.2.3 NewObjectEnvironment (O, E)"},
{"id": "x10.2.3", "title": "10.2.3 The Global Environment"},
{"id": "x10.3", "title": "10.3 Execution Contexts"},
{"id": "x10.3.1", "title": "10.3.1 Identifier Resolution"},
{"id": "x10.4", "title": "10.4 Establishing an Execution Context"},
{"id": "x10.4.1", "title": "10.4.1 Entering Global Code"},
{"id": "x10.4.1.1", "title": "10.4.1.1 Initial Global Execution Context"},
{"id": "x10.4.2", "title": "10.4.2 Entering Eval Code"},
{"id": "x10.4.2.1", "title": "10.4.2.1 Strict Mode Restrictions"},
{"id": "x10.4.3", "title": "10.4.3 Entering Function Code"},
{"id": "x10.5", "title": "10.5 Declaration Binding Instantiation"},
{"id": "x10.6", "title": "10.6 Arguments Object"},
{"id": "x11", "title": "11 Expressions"},
{"id": "x11.1", "title": "11.1 Primary Expressions"},
{"id": "x11.1.1", "title": "11.1.1 The this Keyword"},
{"id": "x11.1.2", "title": "11.1.2 Identifier Reference"},
{"id": "x11.1.3", "title": "11.1.3 Literal Reference"},
{"id": "x11.1.4", "title": "11.1.4 Array Initialiser"},
{"id": "x11.1.5", "title": "11.1.5 Object Initialiser"},
{"id": "x11.1.6", "title": "11.1.6 The Grouping Operator"},
{"id": "x11.2", "title": "11.2 Left-Hand-Side Expressions"},
{"id": "x11.2.1", "title": "11.2.1 Property Accessors"},
{"id": "x11.2.2", "title": "11.2.2 The new Operator"},
{"id": "x11.2.3", "title": "11.2.3 Function Calls"},
{"id": "x11.2.4", "title": "11.2.4 Argument Lists"},
{"id": "x11.2.5", "title": "11.2.5 Function Expressions"},
{"id": "x11.3", "title": "11.3 Postfix Expressions"},
{"id": "x11.3.1", "title": "11.3.1 Postfix Increment Operator"},
{"id": "x11.3.2", "title": "11.3.2 Postfix Decrement Operator"},
{"id": "x11.4", "title": "11.4 Unary Operators"},
{"id": "x11.4.1", "title": "11.4.1 The delete Operator"},
{"id": "x11.4.2", "title": "11.4.2 The void Operator"},
{"id": "x11.4.3", "title": "11.4.3 The typeof Operator"},
{"id": "x11.4.4", "title": "11.4.4 Prefix Increment Operator"},
{"id": "x11.4.5", "title": "11.4.5 Prefix Decrement Operator"},
{"id": "x11.4.6", "title": "11.4.6 Unary + Operator"},
{"id": "x11.4.7", "title": "11.4.7 Unary - Operator"},
{"id": "x11.4.8", "title": "11.4.8 Bitwise NOT Operator ( ~ )"},
{"id": "x11.4.9", "title": "11.4.9 Logical NOT Operator ( ! )"},
{"id": "x11.5", "title": "11.5 Multiplicative Operators"},
{"id": "x11.5.1", "title": "11.5.1 Applying the * Operator"},
{"id": "x11.5.2", "title": "11.5.2 Applying the / Operator"},
{"id": "x11.5.3", "title": "11.5.3 Applying the % Operator"},
{"id": "x11.6", "title": "11.6 Additive Operators"},
{"id": "x11.6.1", "title": "11.6.1 The Addition operator ( + )"},
{"id": "x11.6.2", "title": "11.6.2 The Subtraction Operator ( - )"},
{"id": "x11.6.3", "title": "11.6.3 Applying the Additive Operators to Numbers"},
{"id": "x11.7", "title": "11.7 Bitwise Shift Operators"},
{"id": "x11.7.1", "title": "11.7.1 The Left Shift Operator ( << )"},
{"id": "x11.7.2", "title": "11.7.2 The Signed Right Shift Operator ( >> )"},
{"id": "x11.7.3", "title": "11.7.3 The Unsigned Right Shift Operator ( >>> )"},
{"id": "x11.8", "title": "11.8 Relational Operators"},
{"id": "x11.8.1", "title": "11.8.1 The Less-than Operator ( < )"},
{"id": "x11.8.2", "title": "11.8.2 The Greater-than Operator ( > )"},
{"id": "x11.8.3", "title": "11.8.3 The Less-than-or-equal Operator ( <= )"},
{"id": "x11.8.4", "title": "11.8.4 The Greater-than-or-equal Operator ( >= )"},
{"id": "x11.8.5", "title": "11.8.5 The Abstract Relational Comparison Algorithm"},
{"id": "x11.8.6", "title": "11.8.6 The instanceof operator"},
{"id": "x11.8.7", "title": "11.8.7 The in operator"},
{"id": "x11.9", "title": "11.9 Equality Operators"},
{"id": "x11.9.1", "title": "11.9.1 The Equals Operator ( == )"},
{"id": "x11.9.2", "title": "11.9.2 The Does-not-equals Operator ( != )"},
{"id": "x11.9.3", "title": "11.9.3 The Abstract Equality Comparison Algorithm"},
{"id": "x11.9.4", "title": "11.9.4 The Strict Equals Operator ( === )"},
{"id": "x11.9.5", "title": "11.9.5 The Strict Does-not-equal Operator ( !== )"},
{"id": "x11.9.6", "title": "11.9.6 The Strict Equality Comparison Algorithm"},
{"id": "x11.10", "title": "11.10 Binary Bitwise Operators"},
{"id": "x11.11", "title": "11.11 Binary Logical Operators"},
{"id": "x11.12", "title": "11.12 Conditional Operator ( ? : )"},
{"id": "x11.13", "title": "11.13 Assignment Operators"},
{"id": "x11.13.1", "title": "11.13.1 Simple Assignment ( = )"},
{"id": "x11.13.2", "title": "11.13.2 Compound Assignment ( op= )"},
{"id": "x11.14", "title": "11.14 Comma Operator ( , )"},
{"id": "x12", "title": "12 Statements"},
{"id": "x12.1", "title": "12.1 Block"},
{"id": "x12.2", "title": "12.2 Variable Statement"},
{"id": "x12.2.1", "title": "12.2.1 Strict Mode Restrictions"},
{"id": "x12.3", "title": "12.3 Empty Statement"},
{"id": "x12.4", "title": "12.4 Expression Statement"},
{"id": "x12.5", "title": "12.5 The if Statement"},
{"id": "x12.6", "title": "12.6 Iteration Statements"},
{"id": "x12.6.1", "title": "12.6.1 The do-while Statement"},
{"id": "x12.6.2", "title": "12.6.2 The while Statement"},
{"id": "x12.6.3", "title": "12.6.3 The for Statement"},
{"id": "x12.6.4", "title": "12.6.4 The for-in Statement"},
{"id": "x12.7", "title": "12.7 The continue Statement"},
{"id": "x12.8", "title": "12.8 The break Statement"},
{"id": "x12.9", "title": "12.9 The return Statement"},
{"id": "x12.10", "title": "12.10 The with Statement"},
{"id": "x12.10.1", "title": "12.10.1 Strict Mode Restrictions"},
{"id": "x12.11", "title": "12.11 The switch Statement"},
{"id": "x12.12", "title": "12.12 Labelled Statements"},
{"id": "x12.13", "title": "12.13 The throw Statement"},
{"id": "x12.14", "title": "12.14 The try Statement"},
{"id": "x12.14.1", "title": "12.14.1 Strict Mode Restrictions"},
{"id": "x12.15", "title": "12.15 The debugger statement"},
{"id": "x13", "title": "13 Function Definition"},
{"id": "x13.1", "title": "13.1 Strict Mode Restrictions"},
{"id": "x13.2", "title": "13.2 Creating Function Objects"},
{"id": "x13.2.1", "title": "13.2.1 [[Call]]"},
{"id": "x13.2.2", "title": "13.2.2 [[Construct]]"},
{"id": "x13.2.3", "title": "13.2.3 The Function Object"},
{"id": "x14", "title": "14 Program"},
{"id": "x14.1", "title": "14.1 Directive Prologues and the Use Strict Directive"},
{"id": "x15", "title": "15 Standard Built-in ECMAScript Objects"},
{"id": "x15.1", "title": "15.1 The Global Object"},
{"id": "x15.1.1", "title": "15.1.1 Value Properties of the Global Object"},
{"id": "x15.1.1.1", "title": "15.1.1.1 NaN"},
{"id": "x15.1.1.2", "title": "15.1.1.2 Infinity"},
{"id": "x15.1.1.3", "title": "15.1.1.3 undefined"},
{"id": "x15.1.2", "title": "15.1.2 Function Properties of the Global Object"},
{"id": "x15.1.2.1", "title": "15.1.2.1 eval (x)"},
{"id": "x15.1.2.1.1", "title": "15.1.2.1.1 Direct Call to Eval"},
{"id": "x15.1.2.2", "title": "15.1.2.2 parseInt (string , radix)"},
{"id": "x15.1.2.3", "title": "15.1.2.3 parseFloat (string)"},
{"id": "x15.1.2.4", "title": "15.1.2.4 isNaN (number)"},
{"id": "x15.1.2.5", "title": "15.1.2.5 isFinite (number)"},
{"id": "x15.1.3", "title": "15.1.3 URI Handling Function Properties"},
{"id": "x15.1.3.1", "title": "15.1.3.1 decodeURI (encodedURI)"},
{"id": "x15.1.3.2", "title": "15.1.3.2 decodeURIComponent (encodedURIComponent)"},
{"id": "x15.1.3.3", "title": "15.1.3.3 encodeURI (uri)"},
{"id": "x15.1.3.4", "title": "15.1.3.4 encodeURIComponent (uriComponent)"},
{"id": "x15.1.4", "title": "15.1.4 Constructor Properties of the Global Object"},
{"id": "x15.1.4.1", "title": "15.1.4.1 Object ( . . . )"},
{"id": "x15.1.4.2", "title": "15.1.4.2 Function ( . . . )"},
{"id": "x15.1.4.3", "title": "15.1.4.3 Array ( . . . )"},
{"id": "x15.1.4.4", "title": "15.1.4.4 String ( . . . )"},
{"id": "x15.1.4.5", "title": "15.1.4.5 Boolean ( . . . )"},
{"id": "x15.1.4.6", "title": "15.1.4.6 Number ( . . . )"},
{"id": "x15.1.4.7", "title": "15.1.4.7 Date ( . . . )"},
{"id": "x15.1.4.8", "title": "15.1.4.8 RegExp ( . . . )"},
{"id": "x15.1.4.9", "title": "15.1.4.9 Error ( . . . )"},
{"id": "x15.1.4.10", "title": "15.1.4.10 EvalError ( . . . )"},
{"id": "x15.1.4.11", "title": "15.1.4.11 RangeError ( . . . )"},
{"id": "x15.1.4.12", "title": "15.1.4.12 ReferenceError ( . . . )"},
{"id": "x15.1.4.13", "title": "15.1.4.13 SyntaxError ( . . . )"},
{"id": "x15.1.4.14", "title": "15.1.4.14 TypeError ( . . . )"},
{"id": "x15.1.4.15", "title": "15.1.4.15 URIError ( . . . )"},
{"id": "x15.1.5", "title": "15.1.5 Other Properties of the Global Object"},
{"id": "x15.1.5.1", "title": "15.1.5.1 Math"},
{"id": "x15.1.5.2", "title": "15.1.5.2 JSON"},
{"id": "x15.2", "title": "15.2 Object Objects"},
{"id": "x15.2.1", "title": "15.2.1 The Object Constructor Called as a Function"},
{"id": "x15.2.1.1", "title": "15.2.1.1 Object ( [ value ] )"},
{"id": "x15.2.2", "title": "15.2.2 The Object Constructor"},
{"id": "x15.2.2.1", "title": "15.2.2.1 new Object ( [ value ] )"},
{"id": "x15.2.3", "title": "15.2.3 Properties of the Object Constructor"},
{"id": "x15.2.3.1", "title": "15.2.3.1 Object.prototype"},
{"id": "x15.2.3.2", "title": "15.2.3.2 Object.getPrototypeOf ( O )"},
{"id": "x15.2.3.3", "title": "15.2.3.3 Object.getOwnPropertyDescriptor ( O, P ) "},
{"id": "x15.2.3.4", "title": "15.2.3.4 Object.getOwnPropertyNames ( O )"},
{"id": "x15.2.3.5", "title": "15.2.3.5 Object.create ( O [, Properties] )"},
{"id": "x15.2.3.6", "title": "15.2.3.6 Object.defineProperty ( O, P, Attributes )"},
{"id": "x15.2.3.7", "title": "15.2.3.7 Object.defineProperties ( O, Properties )"},
{"id": "x15.2.3.8", "title": "15.2.3.8 Object.seal ( O )"},
{"id": "x15.2.3.9", "title": "15.2.3.9 Object.freeze ( O )"},
{"id": "x15.2.3.10", "title": "15.2.3.10 Object.preventExtensions ( O )"},
{"id": "x15.2.3.11", "title": "15.2.3.11 Object.isSealed ( O )"},
{"id": "x15.2.3.12", "title": "15.2.3.12 Object.isFrozen ( O )"},
{"id": "x15.2.3.13", "title": "15.2.3.13 Object.isExtensible ( O )"},
{"id": "x15.2.3.14", "title": "15.2.3.14 Object.keys ( O )"},
{"id": "x15.2.4", "title": "15.2.4 Properties of the Object Prototype Object"},
{"id": "x15.2.4.1", "title": "15.2.4.1 Object.prototype.constructor"},
{"id": "x15.2.4.2", "title": "15.2.4.2 Object.prototype.toString ( )"},
{"id": "x15.2.4.3", "title": "15.2.4.3 Object.prototype.toLocaleString ( )"},
{"id": "x15.2.4.4", "title": "15.2.4.4 Object.prototype.valueOf ( )"},
{"id": "x15.2.4.5", "title": "15.2.4.5 Object.prototype.hasOwnProperty (V)"},
{"id": "x15.2.4.6", "title": "15.2.4.6 Object.prototype.isPrototypeOf (V)"},
{"id": "x15.2.4.7", "title": "15.2.4.7 Object.prototype.propertyIsEnumerable (V)"},
{"id": "x15.2.5", "title": "15.2.5 Properties of Object Instances"},
{"id": "x15.3", "title": "15.3 Function Objects"},
{"id": "x15.3.1", "title": "15.3.1 The Function Constructor Called as a Function"},
{"id": "x15.3.1.1", "title": "15.3.1.1 Function (p1, p2, \u2026 , pn, body)"},
{"id": "x15.3.2", "title": "15.3.2 The Function Constructor"},
{"id": "x15.3.2.1", "title": "15.3.2.1 new Function (p1, p2, \u2026 , pn, body)"},
{"id": "x15.3.3", "title": "15.3.3 Properties of the Function Constructor"},
{"id": "x15.3.3.1", "title": "15.3.3.1 Function.prototype"},
{"id": "x15.3.3.2", "title": "15.3.3.2 Function.length"},
{"id": "x15.3.4", "title": "15.3.4 Properties of the Function Prototype Object"},
{"id": "x15.3.4.1", "title": "15.3.4.1 Function.prototype.constructor"},
{"id": "x15.3.4.2", "title": "15.3.4.2 Function.prototype.toString ( )"},
{"id": "x15.3.4.3", "title": "15.3.4.3 Function.prototype.apply (thisArg, argArray)"},
{"id": "x15.3.4.4", "title": "15.3.4.4 Function.prototype.call (thisArg [ , arg1 [ , arg2, \u2026 ] ] )"},
{"id": "x15.3.4.5", "title": "15.3.4.5 Function.prototype.bind (thisArg [, arg1 [, arg2, \u2026]])"},
{"id": "x15.3.4.5.1", "title": "15.3.4.5.1 [[Call]]"},
{"id": "x15.3.4.5.2", "title": "15.3.4.5.2 [[Construct]]"},
{"id": "x15.3.4.5.3", "title": "15.3.4.5.3 [[HasInstance]] (V)"},
{"id": "x15.3.5", "title": "15.3.5 Properties of Function Instances"},
{"id": "x15.3.5.1", "title": "15.3.5.1 length"},
{"id": "x15.3.5.2", "title": "15.3.5.2 prototype"},
{"id": "x15.3.5.3", "title": "15.3.5.3 [[HasInstance]] (V)"},
{"id": "x15.3.5.4", "title": "15.3.5.4 [[Get]] (P)"},
{"id": "x15.4", "title": "15.4 Array Objects"},
{"id": "x15.4.1", "title": "15.4.1 The Array Constructor Called as a Function"},
{"id": "x15.4.1.1", "title": "15.4.1.1 Array ( [ item1 [ , item2 [ , \u2026 ] ] ] )"},
{"id": "x15.4.2", "title": "15.4.2 The Array Constructor"},
{"id": "x15.4.2.1", "title": "15.4.2.1 new Array ( [ item0 [ , item1 [ , \u2026 ] ] ] )"},
{"id": "x15.4.2.2", "title": "15.4.2.2 new Array (len)"},
{"id": "x15.4.3", "title": "15.4.3 Properties of the Array Constructor"},
{"id": "x15.4.3.1", "title": "15.4.3.1 Array.prototype"},
{"id": "x15.4.3.2", "title": "15.4.3.2 Array.isArray ( arg )"},
{"id": "x15.4.4", "title": "15.4.4 Properties of the Array Prototype Object"},
{"id": "x15.4.4.1", "title": "15.4.4.1 Array.prototype.constructor"},
{"id": "x15.4.4.2", "title": "15.4.4.2 Array.prototype.toString ( )"},
{"id": "x15.4.4.3", "title": "15.4.4.3 Array.prototype.toLocaleString ( )"},
{"id": "x15.4.4.4", "title": "15.4.4.4 Array.prototype.concat ( [ item1 [ , item2 [ , \u2026 ] ] ] )"},
{"id": "x15.4.4.5", "title": "15.4.4.5 Array.prototype.join (separator)"},
{"id": "x15.4.4.6", "title": "15.4.4.6 Array.prototype.pop ( )"},
{"id": "x15.4.4.7", "title": "15.4.4.7 Array.prototype.push ( [ item1 [ , item2 [ , \u2026 ] ] ] )"},
{"id": "x15.4.4.8", "title": "15.4.4.8 Array.prototype.reverse ( )"},
{"id": "x15.4.4.9", "title": "15.4.4.9 Array.prototype.shift ( )"},
{"id": "x15.4.4.10", "title": "15.4.4.10 Array.prototype.slice (start, end)"},
{"id": "x15.4.4.11", "title": "15.4.4.11 Array.prototype.sort (comparefn)"},
{"id": "x15.4.4.12", "title": "15.4.4.12 Array.prototype.splice (start, deleteCount [ , item1 [ , item2 [ , \u2026 ] ] ] )"},
{"id": "x15.4.4.13", "title": "15.4.4.13 Array.prototype.unshift ( [ item1 [ , item2 [ , \u2026 ] ] ] )"},
{"id": "x15.4.4.14", "title": "15.4.4.14 Array.prototype.indexOf ( searchElement [ , fromIndex ] )"},
{"id": "x15.4.4.15", "title": "15.4.4.15 Array.prototype.lastIndexOf ( searchElement [ , fromIndex ] )"},
{"id": "x15.4.4.16", "title": "15.4.4.16 Array.prototype.every ( callbackfn [ , thisArg ] )"},
{"id": "x15.4.4.17", "title": "15.4.4.17 Array.prototype.some ( callbackfn [ , thisArg ] )"},
{"id": "x15.4.4.18", "title": "15.4.4.18 Array.prototype.forEach ( callbackfn [ , thisArg ] )"},
{"id": "x15.4.4.19", "title": "15.4.4.19 Array.prototype.map ( callbackfn [ , thisArg ] )"},
{"id": "x15.4.4.20", "title": "15.4.4.20 Array.prototype.filter ( callbackfn [ , thisArg ] )"},
{"id": "x15.4.4.21", "title": "15.4.4.21 Array.prototype.reduce ( callbackfn [ , initialValue ] )"},
{"id": "x15.4.4.22", "title": "15.4.4.22 Array.prototype.reduceRight ( callbackfn [ , initialValue ] )"},
{"id": "x15.4.5", "title": "15.4.5 Properties of Array Instances"},
{"id": "x15.4.5.1", "title": "15.4.5.1 [[DefineOwnProperty]] ( P, Desc, Throw )"},
{"id": "x15.4.5.2", "title": "15.4.5.2 length"},
{"id": "x15.5", "title": "15.5 String Objects"},
{"id": "x15.5.1", "title": "15.5.1 The String Constructor Called as a Function"},
{"id": "x15.5.1.1", "title": "15.5.1.1 String ( [ value ] )"},
{"id": "x15.5.2", "title": "15.5.2 The String Constructor"},
{"id": "x15.5.2.1", "title": "15.5.2.1 new String ( [ value ] )"},
{"id": "x15.5.3", "title": "15.5.3 Properties of the String Constructor"},
{"id": "x15.5.3.1", "title": "15.5.3.1 String.prototype"},
{"id": "x15.5.3.2", "title": "15.5.3.2 String.fromCharCode ( [ char0 [ , char1 [ , \u2026 ] ] ] )"},
{"id": "x15.5.4", "title": "15.5.4 Properties of the String Prototype Object"},
{"id": "x15.5.4.1", "title": "15.5.4.1 String.prototype.constructor"},
{"id": "x15.5.4.2", "title": "15.5.4.2 String.prototype.toString ( )"},
{"id": "x15.5.4.3", "title": "15.5.4.3 String.prototype.valueOf ( )"},
{"id": "x15.5.4.4", "title": "15.5.4.4 String.prototype.charAt (pos)"},
{"id": "x15.5.4.5", "title": "15.5.4.5 String.prototype.charCodeAt (pos)"},
{"id": "x15.5.4.6", "title": "15.5.4.6 String.prototype.concat ( [ string1 [ , string2 [ , \u2026 ] ] ] )"},
{"id": "x15.5.4.7", "title": "15.5.4.7 String.prototype.indexOf (searchString, position)"},
{"id": "x15.5.4.8", "title": "15.5.4.8 String.prototype.lastIndexOf (searchString, position)"},
{"id": "x15.5.4.9", "title": "15.5.4.9 String.prototype.localeCompare (that)"},
{"id": "x15.5.4.10", "title": "15.5.4.10 String.prototype.match (regexp)"},
{"id": "x15.5.4.11", "title": "15.5.4.11 String.prototype.replace (searchValue, replaceValue)"},
{"id": "x15.5.4.12", "title": "15.5.4.12 String.prototype.search (regexp)"},
{"id": "x15.5.4.13", "title": "15.5.4.13 String.prototype.slice (start, end)"},
{"id": "x15.5.4.14", "title": "15.5.4.14 String.prototype.split (separator, limit)"},
{"id": "x15.5.4.15", "title": "15.5.4.15 String.prototype.substring (start, end)"},
{"id": "x15.5.4.16", "title": "15.5.4.16 String.prototype.toLowerCase ( )"},
{"id": "x15.5.4.17", "title": "15.5.4.17 String.prototype.toLocaleLowerCase ( )"},
{"id": "x15.5.4.18", "title": "15.5.4.18 String.prototype.toUpperCase ( )"},
{"id": "x15.5.4.19", "title": "15.5.4.19 String.prototype.toLocaleUpperCase ( )"},
{"id": "x15.5.4.20", "title": "15.5.4.20 String.prototype.trim ( )"},
{"id": "x15.5.5", "title": "15.5.5 Properties of String Instances"},
{"id": "x15.5.5.1", "title": "15.5.5.1 length"},
{"id": "x15.5.5.2", "title": "15.5.5.2 [[GetOwnProperty]] ( P )"},
{"id": "x15.6", "title": "15.6 Boolean Objects"},
{"id": "x15.6.1", "title": "15.6.1 The Boolean Constructor Called as a Function"},
{"id": "x15.6.1.1", "title": "15.6.1.1 Boolean (value)"},
{"id": "x15.6.2", "title": "15.6.2 The Boolean Constructor"},
{"id": "x15.6.2.1", "title": "15.6.2.1 new Boolean (value)"},
{"id": "x15.6.3", "title": "15.6.3 Properties of the Boolean Constructor"},
{"id": "x15.6.3.1", "title": "15.6.3.1 Boolean.prototype"},
{"id": "x15.6.4", "title": "15.6.4 Properties of the Boolean Prototype Object"},
{"id": "x15.6.4.1", "title": "15.6.4.1 Boolean.prototype.constructor"},
{"id": "x15.6.4.2", "title": "15.6.4.2 Boolean.prototype.toString ( )"},
{"id": "x15.6.4.3", "title": "15.6.4.3 Boolean.prototype.valueOf ( )"},
{"id": "x15.6.5", "title": "15.6.5 Properties of Boolean Instances"},
{"id": "x15.7", "title": "15.7 Number Objects"},
{"id": "x15.7.1", "title": "15.7.1 The Number Constructor Called as a Function"},
{"id": "x15.7.1.1", "title": "15.7.1.1 Number ( [ value ] )"},
{"id": "x15.7.2", "title": "15.7.2 The Number Constructor"},
{"id": "x15.7.2.1", "title": "15.7.2.1 new Number ( [ value ] )"},
{"id": "x15.7.3", "title": "15.7.3 Properties of the Number Constructor"},
{"id": "x15.7.3.1", "title": "15.7.3.1 Number.prototype"},
{"id": "x15.7.3.2", "title": "15.7.3.2 Number.MAX_VALUE"},
{"id": "x15.7.3.3", "title": "15.7.3.3 Number.MIN_VALUE"},
{"id": "x15.7.3.4", "title": "15.7.3.4 Number.NaN"},
{"id": "x15.7.3.5", "title": "15.7.3.5 Number.NEGATIVE_INFINITY"},
{"id": "x15.7.3.6", "title": "15.7.3.6 Number.POSITIVE_INFINITY"},
{"id": "x15.7.4", "title": "15.7.4 Properties of the Number Prototype Object"},
{"id": "x15.7.4.1", "title": "15.7.4.1 Number.prototype.constructor"},
{"id": "x15.7.4.2", "title": "15.7.4.2 Number.prototype.toString ( [ radix ] )"},
{"id": "x15.7.4.3", "title": "15.7.4.3 Number.prototype.toLocaleString()"},
{"id": "x15.7.4.4", "title": "15.7.4.4 Number.prototype.valueOf ( )"},
{"id": "x15.7.4.5", "title": "15.7.4.5 Number.prototype.toFixed (fractionDigits)"},
{"id": "x15.7.4.6", "title": "15.7.4.6 Number.prototype.toExponential (fractionDigits)"},
{"id": "x15.7.4.7", "title": "15.7.4.7 Number.prototype.toPrecision (precision)"},
{"id": "x15.7.5", "title": "15.7.5 Properties of Number Instances"},
{"id": "x15.8", "title": "15.8 The Math Object"},
{"id": "x15.8.1", "title": "15.8.1 Value Properties of the Math Object"},
{"id": "x15.8.1.1", "title": "15.8.1.1 E"},
{"id": "x15.8.1.2", "title": "15.8.1.2 LN10"},
{"id": "x15.8.1.3", "title": "15.8.1.3 LN2"},
{"id": "x15.8.1.4", "title": "15.8.1.4 LOG2E"},
{"id": "x15.8.1.5", "title": "15.8.1.5 LOG10E"},
{"id": "x15.8.1.6", "title": "15.8.1.6 PI"},
{"id": "x15.8.1.7", "title": "15.8.1.7 SQRT1_2"},
{"id": "x15.8.1.8", "title": "15.8.1.8 SQRT2"},
{"id": "x15.8.2", "title": "15.8.2 Function Properties of the Math Object"},
{"id": "x15.8.2.1", "title": "15.8.2.1 abs (x)"},
{"id": "x15.8.2.2", "title": "15.8.2.2 acos (x)"},
{"id": "x15.8.2.3", "title": "15.8.2.3 asin (x)"},
{"id": "x15.8.2.4", "title": "15.8.2.4 atan (x)"},
{"id": "x15.8.2.5", "title": "15.8.2.5 atan2 (y, x)"},
{"id": "x15.8.2.6", "title": "15.8.2.6 ceil (x)"},
{"id": "x15.8.2.7", "title": "15.8.2.7 cos (x)"},
{"id": "x15.8.2.8", "title": "15.8.2.8 exp (x)"},
{"id": "x15.8.2.9", "title": "15.8.2.9 floor (x)"},
{"id": "x15.8.2.10", "title": "15.8.2.10 log (x)"},
{"id": "x15.8.2.11", "title": "15.8.2.11 max ( [ value1 [ , value2 [ , \u2026 ] ] ] )"},
{"id": "x15.8.2.12", "title": "15.8.2.12 min ( [ value1 [ , value2 [ , \u2026 ] ] ] )"},
{"id": "x15.8.2.13", "title": "15.8.2.13 pow (x, y)"},
{"id": "x15.8.2.14", "title": "15.8.2.14 random ( )"},
{"id": "x15.8.2.15", "title": "15.8.2.15 round (x)"},
{"id": "x15.8.2.16", "title": "15.8.2.16 sin (x)"},
{"id": "x15.8.2.17", "title": "15.8.2.17 sqrt (x)"},
{"id": "x15.8.2.18", "title": "15.8.2.18 tan (x)"},
{"id": "x15.9", "title": "15.9 Date Objects"},
{"id": "x15.9.1", "title": "15.9.1 Overview of Date Objects and Definitions of Abstract Operators"},
{"id": "x15.9.1.1", "title": "15.9.1.1 Time Values and Time Range"},
{"id": "x15.9.1.2", "title": "15.9.1.2 Day Number and Time within Day"},
{"id": "x15.9.1.3", "title": "15.9.1.3 Year Number"},
{"id": "x15.9.1.4", "title": "15.9.1.4 Month Number"},
{"id": "x15.9.1.5", "title": "15.9.1.5 Date Number"},
{"id": "x15.9.1.6", "title": "15.9.1.6 Week Day"},
{"id": "x15.9.1.7", "title": "15.9.1.7 Local Time Zone Adjustment"},
{"id": "x15.9.1.8", "title": "15.9.1.8 Daylight Saving Time Adjustment"},
{"id": "x15.9.1.9", "title": "15.9.1.9 Local Time"},
{"id": "x15.9.1.10", "title": "15.9.1.10 Hours, Minutes, Second, and Milliseconds"},
{"id": "x15.9.1.11", "title": "15.9.1.11 MakeTime (hour, min, sec, ms)"},
{"id": "x15.9.1.12", "title": "15.9.1.12 MakeDay (year, month, date)"},
{"id": "x15.9.1.13", "title": "15.9.1.13 MakeDate (day, time)"},
{"id": "x15.9.1.14", "title": "15.9.1.14 TimeClip (time)"},
{"id": "x15.9.1.15", "title": "15.9.1.15 Date Time String Format"},
{"id": "x15.9.1.15.1", "title": "15.9.1.15.1 Extended years"},
{"id": "x15.9.2", "title": "15.9.2 The Date Constructor Called as a Function"},
{"id": "x15.9.2.1", "title": "15.9.2.1 Date ( [ year [, month [, date [, hours [, minutes [, seconds [, ms ] ] ] ] ] ] ] )"},
{"id": "x15.9.3", "title": "15.9.3 The Date Constructor"},
{"id": "x15.9.3.1", "title": "15.9.3.1 new Date (year, month [, date [, hours [, minutes [, seconds [, ms ] ] ] ] ] )"},
{"id": "x15.9.3.2", "title": "15.9.3.2 new Date (value)"},
{"id": "x15.9.3.3", "title": "15.9.3.3 new Date ( )"},
{"id": "x15.9.4", "title": "15.9.4 Properties of the Date Constructor"},
{"id": "x15.9.4.1", "title": "15.9.4.1 Date.prototype"},
{"id": "x15.9.4.2", "title": "15.9.4.2 Date.parse (string)"},
{"id": "x15.9.4.3", "title": "15.9.4.3 Date.UTC (year, month [, date [, hours [, minutes [, seconds [, ms ] ] ] ] ])"},
{"id": "x15.9.4.4", "title": "15.9.4.4 Date.now ( )"},
{"id": "x15.9.5", "title": "15.9.5 Properties of the Date Prototype Object"},
{"id": "x15.9.5.1", "title": "15.9.5.1 Date.prototype.constructor"},
{"id": "x15.9.5.2", "title": "15.9.5.2 Date.prototype.toString ( )"},
{"id": "x15.9.5.3", "title": "15.9.5.3 Date.prototype.toDateString ( )"},
{"id": "x15.9.5.4", "title": "15.9.5.4 Date.prototype.toTimeString ( )"},
{"id": "x15.9.5.5", "title": "15.9.5.5 Date.prototype.toLocaleString ( )"},
{"id": "x15.9.5.6", "title": "15.9.5.6 Date.prototype.toLocaleDateString ( )"},
{"id": "x15.9.5.7", "title": "15.9.5.7 Date.prototype.toLocaleTimeString ( )"},
{"id": "x15.9.5.8", "title": "15.9.5.8 Date.prototype.valueOf ( )"},
{"id": "x15.9.5.9", "title": "15.9.5.9 Date.prototype.getTime ( )"},
{"id": "x15.9.5.10", "title": "15.9.5.10 Date.prototype.getFullYear ( )"},
{"id": "x15.9.5.11", "title": "15.9.5.11 Date.prototype.getUTCFullYear ( )"},
{"id": "x15.9.5.12", "title": "15.9.5.12 Date.prototype.getMonth ( )"},
{"id": "x15.9.5.13", "title": "15.9.5.13 Date.prototype.getUTCMonth ( )"},
{"id": "x15.9.5.14", "title": "15.9.5.14 Date.prototype.getDate ( )"},
{"id": "x15.9.5.15", "title": "15.9.5.15 Date.prototype.getUTCDate ( )"},
{"id": "x15.9.5.16", "title": "15.9.5.16 Date.prototype.getDay ( )"},
{"id": "x15.9.5.17", "title": "15.9.5.17 Date.prototype.getUTCDay ( )"},
{"id": "x15.9.5.18", "title": "15.9.5.18 Date.prototype.getHours ( )"},
{"id": "x15.9.5.19", "title": "15.9.5.19 Date.prototype.getUTCHours ( )"},
{"id": "x15.9.5.20", "title": "15.9.5.20 Date.prototype.getMinutes ( )"},
{"id": "x15.9.5.21", "title": "15.9.5.21 Date.prototype.getUTCMinutes ( )"},
{"id": "x15.9.5.22", "title": "15.9.5.22 Date.prototype.getSeconds ( )"},
{"id": "x15.9.5.23", "title": "15.9.5.23 Date.prototype.getUTCSeconds ( )"},
{"id": "x15.9.5.24", "title": "15.9.5.24 Date.prototype.getMilliseconds ( )"},
{"id": "x15.9.5.25", "title": "15.9.5.25 Date.prototype.getUTCMilliseconds ( )"},
{"id": "x15.9.5.26", "title": "15.9.5.26 Date.prototype.getTimezoneOffset ( )"},
{"id": "x15.9.5.27", "title": "15.9.5.27 Date.prototype.setTime (time)"},
{"id": "x15.9.5.28", "title": "15.9.5.28 Date.prototype.setMilliseconds (ms)"},
{"id": "x15.9.5.29", "title": "15.9.5.29 Date.prototype.setUTCMilliseconds (ms)"},
{"id": "x15.9.5.30", "title": "15.9.5.30 Date.prototype.setSeconds (sec [, ms ] )"},
{"id": "x15.9.5.31", "title": "15.9.5.31 Date.prototype.setUTCSeconds (sec [, ms ] )"},
{"id": "x15.9.5.32", "title": "15.9.5.32 Date.prototype.setMinutes (min [, sec [, ms ] ] )"},
{"id": "x15.9.5.33", "title": "15.9.5.33 Date.prototype.setUTCMinutes (min [, sec [, ms ] ] )"},
{"id": "x15.9.5.34", "title": "15.9.5.34 Date.prototype.setHours (hour [, min [, sec [, ms ] ] ] )"},
{"id": "x15.9.5.35", "title": "15.9.5.35 Date.prototype.setUTCHours (hour [, min [, sec [, ms ] ] ] )"},
{"id": "x15.9.5.36", "title": "15.9.5.36 Date.prototype.setDate (date)"},
{"id": "x15.9.5.37", "title": "15.9.5.37 Date.prototype.setUTCDate (date)"},
{"id": "x15.9.5.38", "title": "15.9.5.38 Date.prototype.setMonth (month [, date ] )"},
{"id": "x15.9.5.39", "title": "15.9.5.39 Date.prototype.setUTCMonth (month [, date ] )"},
{"id": "x15.9.5.40", "title": "15.9.5.40 Date.prototype.setFullYear (year [, month [, date ] ] )"},
{"id": "x15.9.5.41", "title": "15.9.5.41 Date.prototype.setUTCFullYear (year [, month [, date ] ] )"},
{"id": "x15.9.5.42", "title": "15.9.5.42 Date.prototype.toUTCString ( )"},
{"id": "x15.9.5.43", "title": "15.9.5.43 Date.prototype.toISOString ( )"},
{"id": "x15.9.5.44", "title": "15.9.5.44 Date.prototype.toJSON ( key )"},
{"id": "x15.9.6", "title": "15.9.6 Properties of Date Instances"},
{"id": "x15.10", "title": "15.10 RegExp (Regular Expression) Objects"},
{"id": "x15.10.1", "title": "15.10.1 Patterns"},
{"id": "x15.10.2", "title": "15.10.2 Pattern Semantics"},
{"id": "x15.10.2.1", "title": "15.10.2.1 Notation"},
{"id": "x15.10.2.2", "title": "15.10.2.2 Pattern"},
{"id": "x15.10.2.3", "title": "15.10.2.3 Disjunction"},
{"id": "x15.10.2.4", "title": "15.10.2.4 Alternative"},
{"id": "x15.10.2.5", "title": "15.10.2.5 Term"},
{"id": "x15.10.2.6", "title": "15.10.2.6 Assertion"},
{"id": "x15.10.2.7", "title": "15.10.2.7 Quantifier"},
{"id": "x15.10.2.8", "title": "15.10.2.8 Atom"},
{"id": "x15.10.2.9", "title": "15.10.2.9 AtomEscape"},
{"id": "x15.10.2.10", "title": "15.10.2.10 CharacterEscape"},
{"id": "x15.10.2.11", "title": "15.10.2.11 DecimalEscape"},
{"id": "x15.10.2.12", "title": "15.10.2.12 CharacterClassEscape"},
{"id": "x15.10.2.13", "title": "15.10.2.13 CharacterClass"},
{"id": "x15.10.2.14", "title": "15.10.2.14 ClassRanges"},
{"id": "x15.10.2.15", "title": "15.10.2.15 NonemptyClassRanges"},
{"id": "x15.10.2.16", "title": "15.10.2.16 NonemptyClassRangesNoDash"},
{"id": "x15.10.2.17", "title": "15.10.2.17 ClassAtom"},
{"id": "x15.10.2.18", "title": "15.10.2.18 ClassAtomNoDash"},
{"id": "x15.10.2.19", "title": "15.10.2.19 ClassEscape"},
{"id": "x15.10.3", "title": "15.10.3 The RegExp Constructor Called as a Function"},
{"id": "x15.10.3.1", "title": "15.10.3.1 RegExp(pattern, flags)"},
{"id": "x15.10.4", "title": "15.10.4 The RegExp Constructor"},
{"id": "x15.10.4.1", "title": "15.10.4.1 new RegExp(pattern, flags)"},
{"id": "x15.10.5", "title": "15.10.5 Properties of the RegExp Constructor"},
{"id": "x15.10.5.1", "title": "15.10.5.1 RegExp.prototype"},
{"id": "x15.10.6", "title": "15.10.6 Properties of the RegExp Prototype Object"},
{"id": "x15.10.6.1", "title": "15.10.6.1 RegExp.prototype.constructor"},
{"id": "x15.10.6.2", "title": "15.10.6.2 RegExp.prototype.exec(string)"},
{"id": "x15.10.6.3", "title": "15.10.6.3 RegExp.prototype.test(string)"},
{"id": "x15.10.6.4", "title": "15.10.6.4 RegExp.prototype.toString()"},
{"id": "x15.10.7", "title": "15.10.7 Properties of RegExp Instances"},
{"id": "x15.10.7.1", "title": "15.10.7.1 source"},
{"id": "x15.10.7.2", "title": "15.10.7.2 global"},
{"id": "x15.10.7.3", "title": "15.10.7.3 ignoreCase"},
{"id": "x15.10.7.4", "title": "15.10.7.4 multiline"},
{"id": "x15.10.7.5", "title": "15.10.7.5 lastIndex"},
{"id": "x15.11", "title": "15.11 Error Objects"},
{"id": "x15.11.1", "title": "15.11.1 The Error Constructor Called as a Function"},
{"id": "x15.11.1.1", "title": "15.11.1.1 Error (message)"},
{"id": "x15.11.2", "title": "15.11.2 The Error Constructor"},
{"id": "x15.11.2.1", "title": "15.11.2.1 new Error (message)"},
{"id": "x15.11.3", "title": "15.11.3 Properties of the Error Constructor"},
{"id": "x15.11.3.1", "title": "15.11.3.1 Error.prototype"},
{"id": "x15.11.4", "title": "15.11.4 Properties of the Error Prototype Object"},
{"id": "x15.11.4.1", "title": "15.11.4.1 Error.prototype.constructor"},
{"id": "x15.11.4.2", "title": "15.11.4.2 Error.prototype.name"},
{"id": "x15.11.4.3", "title": "15.11.4.3 Error.prototype.message"},
{"id": "x15.11.4.4", "title": "15.11.4.4 Error.prototype.toString ( )"},
{"id": "x15.11.5", "title": "15.11.5 Properties of Error Instances"},
{"id": "x15.11.6", "title": "15.11.6 Native Error Types Used in This Standard"},
{"id": "x15.11.6.1", "title": "15.11.6.1 EvalError"},
{"id": "x15.11.6.2", "title": "15.11.6.2 RangeError"},
{"id": "x15.11.6.3", "title": "15.11.6.3 ReferenceError"},
{"id": "x15.11.6.4", "title": "15.11.6.4 SyntaxError"},
{"id": "x15.11.6.5", "title": "15.11.6.5 TypeError"},
{"id": "x15.11.6.6", "title": "15.11.6.6 URIError"},
{"id": "x15.11.7", "title": "15.11.7 NativeError Object Structure"},
{"id": "x15.11.7.1", "title": "15.11.7.1 NativeError Constructors Called as Functions"},
{"id": "x15.11.7.2", "title": "15.11.7.2 NativeError (message)"},
{"id": "x15.11.7.3", "title": "15.11.7.3 The NativeError Constructors"},
{"id": "x15.11.7.4", "title": "15.11.7.4 New NativeError (message)"},
{"id": "x15.11.7.5", "title": "15.11.7.5 Properties of the NativeError Constructors"},
{"id": "x15.11.7.6", "title": "15.11.7.6 NativeError.prototype"},
{"id": "x15.11.7.7", "title": "15.11.7.7 Properties of the NativeError Prototype Objects"},
{"id": "x15.11.7.8", "title": "15.11.7.8 NativeError.prototype.constructor"},
{"id": "x15.11.7.9", "title": "15.11.7.9 NativeError.prototype.name"},
{"id": "x15.11.7.10", "title": "15.11.7.10 NativeError.prototype.message"},
{"id": "x15.11.7.11", "title": "15.11.7.11 Properties of NativeError Instances"},
{"id": "x15.12", "title": "15.12 The JSON Object"},
{"id": "x15.12.1", "title": "15.12.1 The JSON Grammar "},
{"id": "x15.12.1.1", "title": "15.12.1.1 The JSON Lexical Grammar"},
{"id": "x15.12.1.2", "title": "15.12.1.2 The JSON Syntactic Grammar"},
{"id": "x15.12.2", "title": "15.12.2 parse ( text [ , reviver ] )"},
{"id": "x15.12.3", "title": "15.12.3 stringify ( value [ , replacer [ , space ] ] )"},
{"id": "x16", "title": "16 Errors"},
{"id": "A", "title": "Annex A (informative) Grammar Summary"},
{"id": "A.1", "title": "A.1 Lexical Grammar"},
{"id": "A.2", "title": "A.2 Number Conversions"},
{"id": "A.3", "title": "A.3 Expressions"},
{"id": "A.4", "title": "A.4 Statements"},
{"id": "A.5", "title": "A.5 Functions and Programs"},
{"id": "A.6", "title": "A.6 Universal Resource Identifier Character Classes"},
{"id": "A.7", "title": "A.7 Regular Expressions"},
{"id": "A.8", "title": "A.8 JSON"},
{"id": "A.8.1", "title": "A.8.1 JSON Lexical Grammar"},
{"id": "A.8.2", "title": "A.8.2 JSON Syntactic Grammar"},
{"id": "B", "title": "Annex B (informative) Compatibility"},
{"id": "B.1", "title": "B.1 Additional Syntax"},
{"id": "B.1.1", "title": "B.1.1 Numeric Literals"},
{"id": "B.1.2", "title": "B.1.2 String Literals"},
{"id": "B.2", "title": "B.2 Additional Properties"},
{"id": "B.2.1", "title": "B.2.1 escape (string)"},
{"id": "B.2.2", "title": "B.2.2 unescape (string)"},
{"id": "B.2.3", "title": "B.2.3 String.prototype.substr (start, length)"},
{"id": "B.2.4", "title": "B.2.4 Date.prototype.getYear ( )"},
{"id": "B.2.5", "title": "B.2.5 Date.prototype.setYear (year)"},
{"id": "B.2.6", "title": "B.2.6 Date.prototype.toGMTString ( )"},
{"id": "C", "title": "Annex C (informative) The Strict Mode of ECMAScript"},
{"id": "D", "title": "Annex D (informative) Corrections and Clarifications in the 5th Edition with Possible 3rd Edition Compatibility Impact"},
{"id": "E", "title": "Annex E (informative) Additions and Changes in the 5th Edition that Introduce Incompatibilities with the 3rd Edition"},
{"id": "bibliography", "title": "Bibliography"}
]