@@ -233,8 +233,8 @@ var arr = Float32Array.from( [ 1.0, 2.0 ], mapFcn );
233233
234234A callback function is provided two arguments:
235235
236- - ` value ` : source value
237- - ` index ` : source index
236+ - ` value ` : source value.
237+ - ` index ` : source index.
238238
239239To set the callback execution context, provide a ` thisArg ` .
240240
@@ -371,9 +371,9 @@ var bool = arr.every( predicate );
371371
372372A ` predicate ` function is provided three arguments:
373373
374- - ` value ` : array element
375- - ` index ` : array index
376- - ` arr ` : array on which the method is invoked
374+ - ` value ` : array element.
375+ - ` index ` : array index.
376+ - ` arr ` : array on which the method is invoked.
377377
378378To set the callback execution context, provide a ` thisArg ` .
379379
@@ -490,9 +490,9 @@ var arr2 = arr1.filter( predicate );
490490
491491A ` predicate ` function is provided three arguments:
492492
493- - ` value ` : array element
494- - ` index ` : array index
495- - ` arr ` : array on which the method is invoked
493+ - ` value ` : array element.
494+ - ` index ` : array index.
495+ - ` arr ` : array on which the method is invoked.
496496
497497To set the callback execution context, provide a ` thisArg ` .
498498
@@ -552,9 +552,9 @@ var v = arr.find( predicate );
552552
553553A ` predicate ` function is provided three arguments:
554554
555- - ` value ` : array element
556- - ` index ` : array index
557- - ` arr ` : array on which the method is invoked
555+ - ` value ` : array element.
556+ - ` index ` : array index.
557+ - ` arr ` : array on which the method is invoked.
558558
559559To set the callback execution context, provide a ` thisArg ` .
560560
@@ -615,9 +615,9 @@ var idx = arr.findIndex( predicate );
615615
616616A ` predicate ` function is provided three arguments:
617617
618- - ` value ` : array element
619- - ` index ` : array index
620- - ` arr ` : array on which the method is invoked
618+ - ` value ` : array element.
619+ - ` index ` : array index.
620+ - ` arr ` : array on which the method is invoked.
621621
622622To set the callback execution context, provide a ` thisArg ` .
623623
@@ -670,9 +670,9 @@ console.log( str );
670670
671671The callback is provided three arguments:
672672
673- - ` value ` : array element
674- - ` index ` : array index
675- - ` arr ` : array on which the method is invoked
673+ - ` value ` : array element.
674+ - ` index ` : array index.
675+ - ` arr ` : array on which the method is invoked.
676676
677677To set the callback execution context, provide a ` thisArg ` .
678678
@@ -893,9 +893,9 @@ var arr2 = arr1.map( fcn );
893893
894894A callback is provided three arguments:
895895
896- - ` value ` : array element
897- - ` index ` : array index
898- - ` arr ` : array on which the method is invoked
896+ - ` value ` : array element.
897+ - ` index ` : array index.
898+ - ` arr ` : array on which the method is invoked.
899899
900900To set the callback execution context, provide a ` thisArg ` .
901901
@@ -957,10 +957,10 @@ var v = arr.reduce( fcn, 0.0 );
957957
958958A callback is provided four arguments:
959959
960- - ` acc ` : accumulated result
961- - ` value ` : array element
962- - ` index ` : array index
963- - ` arr ` : array on which the method is invoked
960+ - ` acc ` : accumulated result.
961+ - ` value ` : array element.
962+ - ` index ` : array index.
963+ - ` arr ` : array on which the method is invoked.
964964
965965<a name =" method-reduce-right " ></a >
966966
@@ -1000,10 +1000,10 @@ var v = arr.reduce( fcn, 0.0 );
10001000
10011001A callback is provided four arguments:
10021002
1003- - ` acc ` : accumulated result
1004- - ` value ` : array element
1005- - ` index ` : array index
1006- - ` arr ` : array on which the method is invoked
1003+ - ` acc ` : accumulated result.
1004+ - ` value ` : array element.
1005+ - ` index ` : array index.
1006+ - ` arr ` : array on which the method is invoked.
10071007
10081008<a name =" method-reverse " ></a >
10091009
@@ -1176,9 +1176,9 @@ var bool = arr.some( predicate );
11761176
11771177A ` predicate ` function is provided three arguments:
11781178
1179- - ` value ` : array element
1180- - ` index ` : array index
1181- - ` arr ` : array on which the method is invoked
1179+ - ` value ` : array element.
1180+ - ` index ` : array index.
1181+ - ` arr ` : array on which the method is invoked.
11821182
11831183To set the callback execution context, provide a ` thisArg ` .
11841184
0 commit comments