ใช้ฟังก์ชัน map() อย่างถูกต้องเพื่อบันทึกองค์ประกอบ
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
<ก่อน>const addIndexValueToArrayElement =ฟังก์ชัน (arrObject) {const updatedArrayValue =[]; arrObject.forEach (ฟังก์ชัน (ob) {const mapValue =ob.map (ฟังก์ชัน (ค่า) { คืนค่า + arrObject.indexOf (ob) }) updatedArrayValue.push (mapValue) }) ส่งคืน updatedArrayValue;};const output =addIndexValueToArrayElement ( [ [4, 5], [7, 56], [34, 78,]);console.log(เอาต์พุต);ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งด้านล่าง −
โหนด fileName.js
ที่นี่ ชื่อไฟล์ของฉันคือ demo323.js
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
PS C:\Users\Amit\javascript-code> โหนด demo323.js[ [ 4, 5 ], [ 8, 57 ], [ 36, 80 ] ]