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