JavaScriptのTypedArray.forEach()関数
TypedArrayオブジェクトのforEach()関数は、関数の名前を表す文字列値を受け取り、配列内のすべての要素ごとに実行します。
構文
その構文は次のとおりです
typedArray.forEach()
例
<html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> var int32View = new Int32Array([21, 19, 65,21, 14, 66, 87, 55 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); document.write("Result: "); function testResult(element, index, array) { document.writeln(element+100); } int32View.forEach(testResult); //document.write("Result: "+result); </script> </body> </html>
出力
Contents of the typed array: 21,19,65,21,14,66,87,55 Result: 121 119 165 121 114 166 187 155
-
JavaScriptのTypedArray.set()関数
TypedArrayオブジェクトのset()関数は、インデックスを表す数値の配列を受け入れ、指定された配列の内容を、指定されたインデックスから始まる現在の配列にコピーします。 構文 その構文は次のとおりです typedArray.set() 例 <html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript&qu
-
JavaScriptのTypedArray.reverse()関数
TypedArrayオブジェクトのreverse()関数は、型付き配列の内容を逆にします。 構文 その構文は次のとおりです typedArray.reverse() 例 <html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> var typed