
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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
<!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 −
Advertisements