आप इसके 2 पैरामीटर के माध्यम से वर्तमान पुनरावृत्ति विधि के 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/Reference/Global_Objects/Array/map
पैरामीटर
कॉलबैक - फ़ंक्शन जो नए एरे का एक तत्व पैदा करता है, तीन तर्क ले रहा है:
1) currentValue
वर्तमान तत्व को सरणी में संसाधित किया जा रहा है।
2) सूचकांक
सरणी में संसाधित होने वाले वर्तमान तत्व का सूचकांक।
3) सरणी
सरणी नक्शा पर बुलाया गया था।