TypedArray অবজেক্টের ম্যাপ() ফাংশন একটি ফাংশনের নাম গ্রহণ করে এবং টাইপ করা অ্যারের প্রতিটি উপাদানে কল করে এবং ফলাফল প্রদান করে।
সিনট্যাক্স
এর সিনট্যাক্স নিম্নরূপ
typedArray.map()
উদাহরণ
<html>
<head>
<title>JavaScript Array every Method</title>
</head>
<body>
<script type="text/javascript">
var int32View = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]);
document.write("Contents of the typed array: "+int32View);
document.write("<br>");
function square(ele) {
return ele*ele;
}
var result = int32View.map(square);
document.write("Specified element occurred at the index: "+result);
</script>
</body>
</html> আউটপুট
Contents of the typed array: 11,5,13,4,15,3,17,2,19,8 Specified element occurred at the index: 121,25,169,16,225,9,289,4,361,64