আপনি এর দ্বিতীয় প্যারামিটারের মাধ্যমে পদ্ধতির index
জন্য বর্তমান পুনরাবৃত্তি পেতে সক্ষম হবেন map
।
উদাহরণ:
const list = [ 'h', 'e', 'l', 'l', 'o'];
list.map((currElement, index) => {
console.log("The current iteration is: " + index);
console.log("The current element is: " + currElement);
console.log("\n");
return currElement; //equivalent to list[index]
});
আউটপুট:
The current iteration is: 0 <br>The current element is: h
The current iteration is: 1 <br>The current element is: e
The current iteration is: 2 <br>The current element is: l
The current iteration is: 3 <br>The current element is: l
The current iteration is: 4 <br>The current element is: o
আরও দেখুন: https://developer.mozilla.org/docs/Web/JavaScript/ উল্লেখ / গ্লোবাল_অবজেক্টস / অ্যারে / ম্যাপ
পরামিতি
কলব্যাক - তিনটি আর্গুমেন্ট গ্রহণ করে এমন ফাংশন যা নতুন অ্যারের উপাদান তৈরি করে:
1) কারেন্টভ্যালু
বর্তমান উপাদানটি অ্যারেতে প্রক্রিয়াজাত করা হচ্ছে।
2) সূচক
অ্যারেতে প্রক্রিয়াধীন বর্তমান উপাদানটির সূচক।
3) অ্যারে
অ্যারের মানচিত্রটি আহ্বান করা হয়েছিল।