JavaScript array.entries() Method


The array.entries() method of JavaScript is used to return an Array Iterator object with key/value pairs.

The syntax is as follows −

array.entries()

Let us now implement the array.entries() method in JavaScript −

Example

 Live Demo

<!DOCTYPE html>
<html>
<body>
   <h2>Ranking Points</h2>
   <p>Is any point equal to 550 from the key-value pairs...</p>
   <button onclick="display()">Result</button>
   <p id="test"></p>
   <script>
      var pointsArr = [10, 20, 30, 40, 50, 60, 70, 80, 90, 1000];
      var res = pointsArr.entries();
      for (val of res) {
         document.getElementById("test").innerHTML += val + "<br>";
      }
      function pointsFunc(points) {
         return points == 550;
      }
      function display() {
         document.getElementById("test").innerHTML = pointsArr.some(pointsFunc);
      }
   </script>
</body></html>

Output

Click “Result” −

Example

 Live Demo

<!DOCTYPE html>
<html>
<body>
   <h2>Car Variant</h2>
   <button onclick="display()">Result</button>
   <p id="test"></p>
   <script>
      var car = ["Hatchback", "Convertible", "SUV", "AUV", "MUV"];
      var res = car.entries();
      for (val of res) {
         document.getElementById("test").innerHTML += val + "<br>";
      }
      function display() {
         document.getElementById("test").innerHTML = "Array after slicing some elements =    "+car.slice(1,4);
      }
   </script>
</body>
</html>

Output

Click the “Result” button −

Updated on: 17-Dec-2019

96 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements