-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.xml
More file actions
2108 lines (2104 loc) · 183 KB
/
output.xml
File metadata and controls
2108 lines (2104 loc) · 183 KB
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<add allowDups="true">
<doc>
<field name="title"><![CDATA[Array.prototype.sort]]></field>
<field name="l2_sec"><![CDATA[Array prototype sort]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.sort (comparefn)</code></pre>Sorts the elements of an array in place and returns the array. The sort is not necessarily stable. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.reverse]]></field>
<field name="l2_sec"><![CDATA[Array prototype reverse]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.reverse ( )</code></pre>Reverses an array in place. The first array element becomes the last and the last becomes the first. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.isArray]]></field>
<field name="l2_sec"><![CDATA[Array isArray]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.isArray ( arg )</code></pre>Returns true if an object is an array, false if it is not. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.name]]></field>
<field name="l2_sec"><![CDATA[Function name]]></field>
<field name="paragraph"><![CDATA[The function.name property returns the name of the function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.length]]></field>
<field name="l2_sec"><![CDATA[Function length]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.length</code></pre>The length property specifies the number of arguments expected by the function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/length">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/length</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function]]></field>
<field name="l2_sec"><![CDATA[Function]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Function ([arg1[, arg2[, ...argN]],] functionBody)</code></pre>The Function constructor creates a new Function object. In JavaScript every function is actually a Function object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.filter]]></field>
<field name="l2_sec"><![CDATA[Array prototype filter]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.filter ( callbackfn [ , thisArg ] )</code></pre>Creates a new array with all elements that pass the test implemented by the provided function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.forEach]]></field>
<field name="l2_sec"><![CDATA[Array prototype forEach]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.forEach ( callbackfn [ , thisArg ] )</code></pre>Executes a provided function once per array element. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.every]]></field>
<field name="l2_sec"><![CDATA[Array prototype every]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.every ( callbackfn [ , thisArg ] )</code></pre>Tests whether all elements in the array pass the test implemented by the provided function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.map]]></field>
<field name="l2_sec"><![CDATA[Array prototype map]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.map ( callbackfn [ , thisArg ] )</code></pre>Creates a new array with the results of calling a provided function on every element in this array. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.caller]]></field>
<field name="l2_sec"><![CDATA[Function caller]]></field>
<field name="paragraph"><![CDATA[The function.caller property returns the function that invoked the specified function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/caller">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/caller</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype.bind]]></field>
<field name="l2_sec"><![CDATA[Function prototype bind]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.prototype.bind (thisArg [, arg1 [, arg2, …]])</code></pre>The bind() method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.substring]]></field>
<field name="l2_sec"><![CDATA[String prototype substring]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.substring (start, end)</code></pre>Returns a subset of a string between one index and another, or through the end of the string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date]]></field>
<field name="l2_sec"><![CDATA[Date]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Date();
new Date(value);
new Date(dateString);
new Date(year, month [, day, hour, minute, second, millisecond]);</code></pre>Creates a JavaScript Date instance that represents a single moment in time. Date objects are based on a time value that is the number of milliseconds since 1 January, 1970 UTC. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getTime]]></field>
<field name="l2_sec"><![CDATA[Date prototype getTime]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getTime ( )</code></pre>The getTime() method returns the numeric value corresponding to the time for the specified date according to universal time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getMilliseconds]]></field>
<field name="l2_sec"><![CDATA[Date prototype getMilliseconds]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getMilliseconds ( )</code></pre>The getMilliseconds() method returns the milliseconds in the specified date according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getMinutes]]></field>
<field name="l2_sec"><![CDATA[Date prototype getMinutes]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getMinutes ( )</code></pre>The getMinutes() method returns the minutes in the specified date according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getMonth]]></field>
<field name="l2_sec"><![CDATA[Date prototype getMonth]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getMonth ( )</code></pre>The getMonth() method returns the month in the specified date according to local time, as a zero-based value (where zero indicates the first month of the year). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getSeconds]]></field>
<field name="l2_sec"><![CDATA[Date prototype getSeconds]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getSeconds ( )</code></pre>The getSeconds() method returns the seconds in the specified date according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getFullYear]]></field>
<field name="l2_sec"><![CDATA[Date prototype getFullYear]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getFullYear ( )</code></pre>The getFullYear() method returns the year of the specified date according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getDate]]></field>
<field name="l2_sec"><![CDATA[Date prototype getDate]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getDate ( )</code></pre>The getDate() method returns the day of the month for the specified date according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getDay]]></field>
<field name="l2_sec"><![CDATA[Date prototype getDay]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getDay ( )</code></pre>The getDay() method returns the day of the week for the specified date according to local time, where 0 represents Sunday. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.getHours]]></field>
<field name="l2_sec"><![CDATA[Date prototype getHours]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.getHours ( )</code></pre>The getHours() method returns the hour for the specified date, according to local time. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.setHours]]></field>
<field name="l2_sec"><![CDATA[Date prototype setHours]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.setHours (hour [, min [, sec [, ms ] ] ] )</code></pre>The setHours() method sets the hours for a specified date according to local time, and returns the number of milliseconds since 1 January 1970 00:00:00 UTC until the time represented by the updated Date instance. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.slice]]></field>
<field name="l2_sec"><![CDATA[String prototype slice]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.slice (start, end)</code></pre>Extracts a section of a string and returns a new string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/slice">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/slice</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.keys]]></field>
<field name="l2_sec"><![CDATA[Object keys]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.keys ( O )</code></pre>Returns an array of a given object's own enumerable properties, in the same order as that provided by a for-in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.seal]]></field>
<field name="l2_sec"><![CDATA[Object seal]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.seal ( O )</code></pre>Seals an object, preventing new properties from being added to it and marking all existing properties as non-configurable. Values of present properties can still be changed as long as they are writable. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.isSealed]]></field>
<field name="l2_sec"><![CDATA[Object isSealed]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.isSealed ( O )</code></pre>Determine if an object is sealed. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isSealed">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isSealed</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.freeze]]></field>
<field name="l2_sec"><![CDATA[Object freeze]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.freeze ( O )</code></pre>Freezes an object: that is, prevents new properties from being added to it; prevents existing properties from being removed; and prevents existing properties, or their enumerability, configurability, or writability, from being changed. In essence the object is made effectively immutable. The method returns the object being frozen. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.isFrozen]]></field>
<field name="l2_sec"><![CDATA[Object isFrozen]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.isFrozen ( O )</code></pre>Determine if an object is frozen. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isFrozen">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isFrozen</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.preventExtensions]]></field>
<field name="l2_sec"><![CDATA[Object preventExtensions]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.preventExtensions ( O )</code></pre>Prevents new properties from ever being added to an object (i.e. prevents future extensions to the object). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/preventExtensions">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/preventExtensions</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.getOwnPropertyNames]]></field>
<field name="l2_sec"><![CDATA[Object getOwnPropertyNames]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.getOwnPropertyNames ( O )</code></pre>Returns an array of all properties (enumerable or not) found directly upon a given object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyNames">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyNames</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.getOwnPropertyDescriptor]]></field>
<field name="l2_sec"><![CDATA[Object getOwnPropertyDescriptor]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.getOwnPropertyDescriptor ( O, P )</code></pre>Returns a property descriptor for an own property (that is, one directly present on an object, not present by dint of being along an object's prototype chain) of a given object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getOwnPropertyDescriptor</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.defineProperties]]></field>
<field name="l2_sec"><![CDATA[Object defineProperties]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.defineProperties ( O, Properties )</code></pre>Defines new or modifies existing properties directly on an object, returning the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperties">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperties</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.create]]></field>
<field name="l2_sec"><![CDATA[Object create]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.create ( O [, Properties] )</code></pre>Creates a new object with the specified prototype object and properties. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/create</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.defineProperty]]></field>
<field name="l2_sec"><![CDATA[Object defineProperty]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.defineProperty ( O, P, Attributes )</code></pre>Defines a new property directly on an object, or modifies an existing property on an object, and returns the object. If you want to see how to use the Object.defineProperty method with a binary-flags-like syntax, see this article. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[RegExp.prototype.toSource()]]></field>
<field name="l2_sec"><![CDATA[RegExp prototype toSource ]]></field>
<field name="paragraph"><![CDATA[<pre><code>regexObj.toSource()
RegExp.toSource()</code></pre>The toSource() method returns a string representing the source code of the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/toSource</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[RegExp]]></field>
<field name="l2_sec"><![CDATA[RegExp]]></field>
<field name="paragraph"><![CDATA[The RegExp constructor creates a regular expression object for matching text with a pattern. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype.apply]]></field>
<field name="l2_sec"><![CDATA[Function prototype apply]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.prototype.apply (thisArg, argArray)</code></pre>The apply() method calls a function with a given this value and arguments provided as an array (or an array-like object). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/apply">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/apply</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Map]]></field>
<field name="l2_sec"><![CDATA[Map]]></field>
<field name="paragraph"><![CDATA[Map objects are simple key/value maps. Any value (both objects and primitive values) may be used as either a key or a value. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.join]]></field>
<field name="l2_sec"><![CDATA[Array prototype join]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.join (separator)</code></pre>Joins all elements of an array into a string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/join</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.now]]></field>
<field name="l2_sec"><![CDATA[Date now]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.now ( )</code></pre>The Date.now() method returns the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.fromCharCode]]></field>
<field name="l2_sec"><![CDATA[String fromCharCode]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.fromCharCode ( [ char0 [ , char1 [ , … ] ] ] )</code></pre>Returns a string created by using the specified sequence of Unicode values. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.encodeURIComponent]]></field>
<field name="l2_sec"><![CDATA[Global encodeURIComponent]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.encodeURIComponent (uriComponent)</code></pre>Encodes a Uniform Resource Identifier (URI) component by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two "surrogate" characters). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Array prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.toString ( )</code></pre>Returns a string representing the specified array and its elements. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.slice]]></field>
<field name="l2_sec"><![CDATA[Array prototype slice]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.slice (start, end)</code></pre>Returns a shallow copy of a portion of an array. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.concat]]></field>
<field name="l2_sec"><![CDATA[Array prototype concat]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.concat ( [ item1 [ , item2 [ , … ] ] ] )</code></pre>Returns a new array comprised of this array joined with other array(s) and/or value(s). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.unshift]]></field>
<field name="l2_sec"><![CDATA[Array prototype unshift]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.unshift ( [ item1 [ , item2 [ , … ] ] ] )</code></pre>Adds one or more elements to the beginning of an array and returns the new length of the array. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.splice]]></field>
<field name="l2_sec"><![CDATA[Array prototype splice]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.splice (start, deleteCount [ , item1 [ , item2 [ , … ] ] ] )</code></pre>Changes the content of an array, adding new elements while removing old elements. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.shift]]></field>
<field name="l2_sec"><![CDATA[Array prototype shift]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.shift ( )</code></pre>Removes the first element from an array and returns that element. This method changes the length of the array. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.push]]></field>
<field name="l2_sec"><![CDATA[Array prototype push]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.push ( [ item1 [ , item2 [ , … ] ] ] )</code></pre>Mutates an array by appending the given elements and returning the new length of the array. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Set]]></field>
<field name="l2_sec"><![CDATA[Set]]></field>
<field name="paragraph"><![CDATA[Set objects let you store unique values of any type, whether primitive values or object references. Value equality is not based on the same algorithm as the one used in the === operator. Specifically, for Sets, +0 (which is strictly equal to -0) and -0 are different values. NaN can also be stored in a Set. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array]]></field>
<field name="l2_sec"><![CDATA[Array]]></field>
<field name="paragraph"><![CDATA[<pre><code>[element0, element1, ..., elementN]
new Array(element0, element1, ..., elementN)
new Array(arrayLength)</code></pre>The JavaScript Array global object is a constructor for arrays, which are high-level, list-like objects. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.lastIndexOf]]></field>
<field name="l2_sec"><![CDATA[Array prototype lastIndexOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.lastIndexOf ( searchElement [ , fromIndex ] )</code></pre>Returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.indexOf]]></field>
<field name="l2_sec"><![CDATA[Array prototype indexOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.indexOf ( searchElement [ , fromIndex ] )</code></pre>Returns the first index at which a given element can be found in the array, or -1 if it is not present. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.reduceRight]]></field>
<field name="l2_sec"><![CDATA[Array prototype reduceRight]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.reduceRight ( callbackfn [ , initialValue ] )</code></pre>Apply a function against an accumulator and each value of the array (from right-to-left) as to reduce it to a single value. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/ReduceRight">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/ReduceRight</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.some]]></field>
<field name="l2_sec"><![CDATA[Array prototype some]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.some ( callbackfn [ , thisArg ] )</code></pre>Tests whether some element in the array passes the test implemented by the provided function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[JSON]]></field>
<field name="l2_sec"><![CDATA[JSON]]></field>
<field name="paragraph"><![CDATA[The JSON object contains methods for converting values to JavaScript Object Notation (JSON) and for converting JSON to values. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Boolean.prototype]]></field>
<field name="l2_sec"><![CDATA[Boolean prototype]]></field>
<field name="paragraph"><![CDATA[<pre><code>Boolean.prototype</code></pre>The Boolean.prototype property represents the prototype for the Boolean constructor. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/prototype">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/prototype</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Boolean]]></field>
<field name="l2_sec"><![CDATA[Boolean]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Boolean(value)</code></pre>The Boolean object is an object wrapper for a boolean value. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.quote]]></field>
<field name="l2_sec"><![CDATA[String quote]]></field>
<field name="paragraph"><![CDATA[<pre><code>str.quote()</code></pre>Returns a copy of the string, replacing various special characters in the string with their escape sequences and wrapping the result in double-quotes ("). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/quote">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/quote</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype.call]]></field>
<field name="l2_sec"><![CDATA[Function prototype call]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.prototype.call (thisArg [ , arg1 [ , arg2, … ] ] )</code></pre>The call() method calls a function with a given this value and arguments provided individually. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[WeakMap]]></field>
<field name="l2_sec"><![CDATA[WeakMap]]></field>
<field name="paragraph"><![CDATA[WeakMaps are key/value maps in which keys are objects. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.isNaN]]></field>
<field name="l2_sec"><![CDATA[Global isNaN]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.isNaN (number)</code></pre>Determines whether a value is NaN or not. Be careful, this function is broken. You may be interested in ECMAScript 6 Number.isNaN. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaN">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaN</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.replace]]></field>
<field name="l2_sec"><![CDATA[String prototype replace]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.replace (searchValue, replaceValue)</code></pre>Returns a new string with some or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.concat]]></field>
<field name="l2_sec"><![CDATA[String prototype concat]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.concat ( [ string1 [ , string2 [ , … ] ] ] )</code></pre>Combines the text of two or more strings and returns a new string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.toUpperCase]]></field>
<field name="l2_sec"><![CDATA[String prototype toUpperCase]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.toUpperCase ( )</code></pre>Returns the calling string value converted to uppercase. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.toLowerCase]]></field>
<field name="l2_sec"><![CDATA[String prototype toLowerCase]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.toLowerCase ( )</code></pre>Returns the calling string value converted to lowercase. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.length]]></field>
<field name="l2_sec"><![CDATA[String prototype length]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.length</code></pre>The length of a string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.prototype.isPrototypeOf]]></field>
<field name="l2_sec"><![CDATA[Object prototype isPrototypeOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.prototype.isPrototypeOf (V)</code></pre>Tests for an object in another object's prototype chain. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isPrototypeOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isPrototypeOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.getPrototypeOf]]></field>
<field name="l2_sec"><![CDATA[Object getPrototypeOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.getPrototypeOf ( O )</code></pre>Returns the prototype (i.e. the internal [[Prototype]]) of the specified object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.trim]]></field>
<field name="l2_sec"><![CDATA[String prototype trim]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.trim ( )</code></pre>Removes whitespace from both ends of the string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.trimLeft]]></field>
<field name="l2_sec"><![CDATA[String trimLeft]]></field>
<field name="paragraph"><![CDATA[<pre><code>string.trimLeft()</code></pre>Removes whitespace from the left end of the string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimLeft">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimLeft</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.trimRight]]></field>
<field name="l2_sec"><![CDATA[String trimRight]]></field>
<field name="paragraph"><![CDATA[<pre><code>string.trimRight()</code></pre>Removes whitespace from the right end of the string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimRight">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimRight</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toLocaleString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toLocaleString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toLocaleString ( )</code></pre>The toLocaleString() method returns a string with a language sensitive representation of this date. The new locales and options arguments let applications specify the language whose formatting conventions should be used and customize the behavior of the function. In older implementations, which ignore the locales and options arguments, the locale used and the form of the string returned are entirely implementation dependent. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[stack]]></field>
<field name="l2_sec"><![CDATA[stack]]></field>
<field name="paragraph"><![CDATA[This non-standard property of Error objects offers a trace of which functions were called, in what order, from which line and file, and with what arguments. The stack string proceeds from the most recent calls to earlier ones, leading back to the original global scope call. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/Stack">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/Stack</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Array.prototype.reduce]]></field>
<field name="l2_sec"><![CDATA[Array prototype reduce]]></field>
<field name="paragraph"><![CDATA[<pre><code>Array.prototype.reduce ( callbackfn [ , initialValue ] )</code></pre>Apply a function against an accumulator and each value of the array (from left-to-right) as to reduce it to a single value. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.random]]></field>
<field name="l2_sec"><![CDATA[Math random]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.random ( )</code></pre>The Math.random() function returns a floating-point, pseudo-random number in the range [0, 1) that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[__proto__]]></field>
<field name="l2_sec"><![CDATA[__proto__]]></field>
<field name="paragraph"><![CDATA[<pre><code>var proto = obj.__proto__;</code></pre>An Object's __proto__ property references the same object as its internal [[Prototype]] (often referred to as "the prototype"), which may be an object or, as in the default case of Object.prototype.__proto__, null . This property is an abstraction error, because a property with the same name, but some other value, could be defined on the object too. If there is a need to reference an object's prototype, the preferred method is to use Object.getPrototypeOf. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/proto</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.atan2]]></field>
<field name="l2_sec"><![CDATA[Math atan2]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.atan2 (y, x)</code></pre>The Math.atan2() function returns the arctangent of the quotient of its arguments. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number]]></field>
<field name="l2_sec"><![CDATA[Number]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Number(value);</code></pre>The Number JavaScript object is a wrapper object allowing you to work with numerical values. A Number object is created using the Number() constructor. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.prototype.toSource()]]></field>
<field name="l2_sec"><![CDATA[Number prototype toSource ]]></field>
<field name="paragraph"><![CDATA[<pre><code>numObj.toSource();
Number.toSource();</code></pre>The toSource() method returns a string representing the source code of the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toSource">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toSource</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Boolean.prototype.toSource()]]></field>
<field name="l2_sec"><![CDATA[Boolean prototype toSource ]]></field>
<field name="paragraph"><![CDATA[<pre><code>booleanObj.toSource()
Boolean.toSource()</code></pre>The toSource() method returns a string representing the source code of the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.watch]]></field>
<field name="l2_sec"><![CDATA[Object watch]]></field>
<field name="paragraph"><![CDATA[<pre><code>object.watch(prop, handler)</code></pre>Watches for a property to be assigned a value and runs a function when that occurs. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/watch">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/watch</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toISOString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toISOString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toISOString ( )</code></pre>The toISOString() method returns a string in ISO format (ISO 8601 Extended Format), which can be described as follows: YYYY-MM-DDTHH:mm:ss.sssZ. The timezone is always UTC as denoted by the suffix "Z". <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.parse]]></field>
<field name="l2_sec"><![CDATA[Date parse]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.parse (string)</code></pre>The Date.parse() method parses a string representation of a date, and returns the number of milliseconds since January 1, 1970, 00:00:00 UTC. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String]]></field>
<field name="l2_sec"><![CDATA[String]]></field>
<field name="paragraph"><![CDATA[<pre><code>'string text'
"string text"
"中文 español English हिन्दी العربية português বাংলা русский 日本語 ਪੰਜਾਬੀ 한국어"</code></pre>The String global object is a constructor for strings, or a sequence of characters. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.cos]]></field>
<field name="l2_sec"><![CDATA[Math cos]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.cos (x)</code></pre>The Math.cos() function returns the cosine of a number. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cos">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cos</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.sin]]></field>
<field name="l2_sec"><![CDATA[Math sin]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.sin (x)</code></pre>The Math.sin() function returns the sine of a number. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sin">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sin</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.undefined]]></field>
<field name="l2_sec"><![CDATA[Global undefined]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.undefined</code></pre>The value undefined. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[eval]]></field>
<field name="l2_sec"><![CDATA[eval]]></field>
<field name="paragraph"><![CDATA[<pre><code>object.eval(string)</code></pre>Evaluates a string of JavaScript code in the context of an object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/eval">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/eval</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.isFinite]]></field>
<field name="l2_sec"><![CDATA[Global isFinite]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.isFinite (number)</code></pre>Evaluates an argument to determine whether it is a finite number. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isFinite">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isFinite</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Object prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.prototype.toString ( )</code></pre>Returns a string representing the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Number prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Number.prototype.toString ( [ radix ] )</code></pre>The toString() method returns a string representing the specified Number object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object]]></field>
<field name="l2_sec"><![CDATA[Object]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Object( [ value ] )</code></pre>The Object constructor creates an object wrapper. When Object is called as a function rather than as a constructor, it performs a type conversion. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Error]]></field>
<field name="l2_sec"><![CDATA[Error]]></field>
<field name="paragraph"><![CDATA[<pre><code>new Error([message[, fileName[, lineNumber]]])</code></pre>Creates an error object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.indexOf]]></field>
<field name="l2_sec"><![CDATA[String prototype indexOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.indexOf (searchString, position)</code></pre>Returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex,
returns -1 if the value is not found. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.lastIndexOf]]></field>
<field name="l2_sec"><![CDATA[String prototype lastIndexOf]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.lastIndexOf (searchString, position)</code></pre>Returns the index within the calling String object of the last occurrence of the specified value, or -1 if not found. The calling string is searched backward, starting at fromIndex. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype]]></field>
<field name="l2_sec"><![CDATA[String prototype]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype</code></pre>Represents the String prototype object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.search]]></field>
<field name="l2_sec"><![CDATA[String prototype search]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.search (regexp)</code></pre>Executes the search for a match between a regular expression and this String object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/search">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/search</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.substr]]></field>
<field name="l2_sec"><![CDATA[String prototype substr]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.substr (start, length)</code></pre>Returns the characters in a string beginning at the specified location through the specified number of characters. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[RegExp.prototype.test]]></field>
<field name="l2_sec"><![CDATA[RegExp prototype test]]></field>
<field name="paragraph"><![CDATA[<pre><code>RegExp.prototype.test(string)</code></pre>The test() method executes a search for a match between a regular expression and a specified string. Returns true or false. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/test</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toUTCString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toUTCString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toUTCString ( )</code></pre>The toUTCString() method converts a date to a string, using the UTC time zone. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype]]></field>
<field name="l2_sec"><![CDATA[Date prototype]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype</code></pre>The Date.prototype property represents the prototype for the Date constructor. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/prototype">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/prototype</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.prototype]]></field>
<field name="l2_sec"><![CDATA[Object prototype]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.prototype</code></pre>The Object.prototype property represents the Object prototype object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/prototype</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.unwatch]]></field>
<field name="l2_sec"><![CDATA[Object unwatch]]></field>
<field name="paragraph"><![CDATA[<pre><code>object.unwatch(prop)</code></pre>Removes a watchpoint set with the watch() method. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/unwatch">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/unwatch</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Proxy]]></field>
<field name="l2_sec"><![CDATA[Proxy]]></field>
<field name="paragraph"><![CDATA[Introduction <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Function prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.prototype.toString ( )</code></pre>The toString() method returns a string representing the source code of the function. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[JSON.stringify]]></field>
<field name="l2_sec"><![CDATA[JSON stringify]]></field>
<field name="paragraph"><![CDATA[<pre><code>JSON.stringify ( value [ , replacer [ , space ] ] )</code></pre>Convert a value to JSON, optionally replacing values if a replacer function is specified, or optionally including only the specified properties if a replacer array is specified. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.encodeURI]]></field>
<field name="l2_sec"><![CDATA[Global encodeURI]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.encodeURI (uri)</code></pre>Encodes a Uniform Resource Identifier (URI) by replacing each instance of certain characters by one, two, three, or four escape sequences representing the UTF-8 encoding of the character (will only be four escape sequences for characters composed of two "surrogate" characters). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[RegExp.prototype.exec]]></field>
<field name="l2_sec"><![CDATA[RegExp prototype exec]]></field>
<field name="paragraph"><![CDATA[<pre><code>RegExp.prototype.exec(string)</code></pre>The exec() method executes a search for a match in a specified string. Returns a result array, or null. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.match]]></field>
<field name="l2_sec"><![CDATA[String prototype match]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.match (regexp)</code></pre>Used to retrieve the matches when matching a string against a regular expression. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.max]]></field>
<field name="l2_sec"><![CDATA[Math max]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.max ( [ value1 [ , value2 [ , … ] ] ] )</code></pre>The Math.max() function returns the largest of zero or more numbers. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/max</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Math.min]]></field>
<field name="l2_sec"><![CDATA[Math min]]></field>
<field name="paragraph"><![CDATA[<pre><code>Math.min ( [ value1 [ , value2 [ , … ] ] ] )</code></pre>The Math.min() function returns the smallest of zero or more numbers. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/min">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/min</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.split]]></field>
<field name="l2_sec"><![CDATA[String prototype split]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.split (separator, limit)</code></pre>Splits a String object into an array of strings by separating the string into substrings. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.prototype.propertyIsEnumerable]]></field>
<field name="l2_sec"><![CDATA[Object prototype propertyIsEnumerable]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.prototype.propertyIsEnumerable (V)</code></pre>Returns a Boolean indicating whether the specified property is enumerable. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/propertyIsEnumerable">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/propertyIsEnumerable</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[__noSuchMethod__]]></field>
<field name="l2_sec"><![CDATA[__noSuchMethod__]]></field>
<field name="paragraph"><![CDATA[<pre><code>obj.__noSuchMethod__ = fun</code></pre>Executes a function when a non-existent method is called on an object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/noSuchMethod">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/noSuchMethod</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.NaN]]></field>
<field name="l2_sec"><![CDATA[Number NaN]]></field>
<field name="paragraph"><![CDATA[<pre><code>Number.NaN</code></pre>The Number.NaN property represents Not-A-Number. Equivalent of NaN. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/NaN</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.NaN]]></field>
<field name="l2_sec"><![CDATA[Global NaN]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.NaN</code></pre>A value representing Not-A-Number. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.isExtensible]]></field>
<field name="l2_sec"><![CDATA[Object isExtensible]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.isExtensible ( O )</code></pre>Determines if an object is extensible (whether it can have new properties added to it). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/isExtensible</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.POSITIVE_INFINITY]]></field>
<field name="l2_sec"><![CDATA[Number POSITIVE_INFINITY]]></field>
<field name="paragraph"><![CDATA[<pre><code>Number.POSITIVE_INFINITY</code></pre>The Number.POSITIVE_INFINITY property represents the positive Infinity value. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/POSITIVE_INFINITY</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.arity]]></field>
<field name="l2_sec"><![CDATA[Function arity]]></field>
<field name="paragraph"><![CDATA[The arity property used to return the number of arguments expected by the function, however, it no longer exists and has been replaced by the Function.prototype.length property. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/arity">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/arity</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[JSON.parse]]></field>
<field name="l2_sec"><![CDATA[JSON parse]]></field>
<field name="paragraph"><![CDATA[<pre><code>JSON.parse ( text [ , reviver ] )</code></pre>Parse a string as JSON, optionally transforming the value produced by parsing. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype.isGenerator()]]></field>
<field name="l2_sec"><![CDATA[Function prototype isGenerator ]]></field>
<field name="paragraph"><![CDATA[<pre><code>fun.isGenerator()</code></pre>The isGenerator() method determines whether or not a function is a generator. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/isGenerator">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/isGenerator</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.prototype.toFixed]]></field>
<field name="l2_sec"><![CDATA[Number prototype toFixed]]></field>
<field name="paragraph"><![CDATA[<pre><code>Number.prototype.toFixed (fractionDigits)</code></pre>The toFixed() method formats a number using fixed-point notation. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Global.parseInt]]></field>
<field name="l2_sec"><![CDATA[Global parseInt]]></field>
<field name="paragraph"><![CDATA[<pre><code>Global.parseInt (string , radix)</code></pre>Parses a string argument and returns an integer of the specified radix or base. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[__lookupGetter__]]></field>
<field name="l2_sec"><![CDATA[__lookupGetter__]]></field>
<field name="paragraph"><![CDATA[<pre><code>obj.__lookupGetter__(sprop)</code></pre>Return the function bound as a getter to the specified property. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/lookupGetter">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/lookupGetter</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Function.prototype]]></field>
<field name="l2_sec"><![CDATA[Function prototype]]></field>
<field name="paragraph"><![CDATA[<pre><code>Function.prototype</code></pre>The Function.prototype property represents the Function prototype object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Error.toSource]]></field>
<field name="l2_sec"><![CDATA[Error toSource]]></field>
<field name="paragraph"><![CDATA[<pre><code>error.toSource()</code></pre>Returns code that could eval to the same error. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.toSource]]></field>
<field name="l2_sec"><![CDATA[Object toSource]]></field>
<field name="paragraph"><![CDATA[<pre><code>obj.toSource()</code></pre>Returns a string representing the source code of the object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[String.prototype.charCodeAt]]></field>
<field name="l2_sec"><![CDATA[String prototype charCodeAt]]></field>
<field name="paragraph"><![CDATA[<pre><code>String.prototype.charCodeAt (pos)</code></pre>Returns the numeric Unicode value of the character at the given index (except for unicode codepoints > 0x10000). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Number.prototype.toLocaleString]]></field>
<field name="l2_sec"><![CDATA[Number prototype toLocaleString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Number.prototype.toLocaleString()</code></pre>The toLocaleString() method returns a string with a language sensitive representation of this number. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Object.prototype.hasOwnProperty]]></field>
<field name="l2_sec"><![CDATA[Object prototype hasOwnProperty]]></field>
<field name="paragraph"><![CDATA[<pre><code>Object.prototype.hasOwnProperty (V)</code></pre>Returns a boolean indicating whether the object has the specified property. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Error.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Error prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Error.prototype.toString ( )</code></pre>Returns a string representing the specified Error object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toString ( )</code></pre>The toString() method returns a string representing the specified Date object. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Error.prototype.name]]></field>
<field name="l2_sec"><![CDATA[Error prototype name]]></field>
<field name="paragraph"><![CDATA[<pre><code>Error.prototype.name</code></pre>A name for the type of error. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/name">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/name</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Error.prototype.message]]></field>
<field name="l2_sec"><![CDATA[Error prototype message]]></field>
<field name="paragraph"><![CDATA[<pre><code>Error.prototype.message</code></pre>A human-readable description of the error. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/message">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/message</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toLocaleFormat()]]></field>
<field name="l2_sec"><![CDATA[Date prototype toLocaleFormat ]]></field>
<field name="paragraph"><![CDATA[<pre><code>dateObj.toLocaleFormat(formatString)</code></pre>The non-standard toLocaleFormat() method converts a date to a string using the specified formatting. DateTimeFormat is an alternative to format dates in a standards-compliant way. See also the newer version of Date.prototype.toLocaleDateString(). <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleFormat">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleFormat</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toGMTString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toGMTString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toGMTString ( )</code></pre>The toGMTString() method converts a date to a string, using Internet GMT conventions. The exact format of the value returned by toGMTString varies according to the platform and browser, in general it should represent a human readable date string. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toGMTString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.toDateString]]></field>
<field name="l2_sec"><![CDATA[Date prototype toDateString]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.toDateString ( )</code></pre>The toDateString() method returns the date portion of a Date object in human readable form in American English. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>
<doc>
<field name="title"><![CDATA[Date.prototype.setYear]]></field>
<field name="l2_sec"><![CDATA[Date prototype setYear]]></field>
<field name="paragraph"><![CDATA[<pre><code>Date.prototype.setYear (year)</code></pre>The setYear() method sets the year for a specified date according to local time. Because setYear does not set full years ("year 2000 problem"), it is no longer used and has been replaced by the setFullYear method. <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/setYear</a>]]></field>
<field name="p_count">1</field>
<field name="source"><![CDATA[mdn_js]]></field>
</doc>