Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ฟังก์ชัน Map.forEach() ใน JavaScript


ฟังก์ชัน forEach() ของออบเจ็กต์ Map จะคืนค่า iterator ของออบเจ็กต์ Map ที่เกี่ยวข้อง และใช้ฟังก์ชันนี้เพื่อดึงข้อมูลคู่ค่าคีย์ของแผนที่

ไวยากรณ์

ไวยากรณ์ของมันคือดังต่อไปนี้

mapVar.forEach()

ตัวอย่าง

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var mapVar = new Map();
      mapVar.set('1', 'Java');
      mapVar.set('2', 'JavaFX');
      mapVar.set('3', 'HBase');
      mapVar.set('4', 'Neo4j');
      function show(values) {
         document.write(values);
         document.write("<br>");
      }
      mapVar.forEach(show);
   </script>
</body>
</html>

ผลลัพธ์

Java
JavaFX
HBase
Neo4j