Phương thức array.values () của JavaScript trả về một đối tượng Array Iterator mới chứa các giá trị cho mỗi chỉ mục trong mảng.
Cú pháp như sau -
arr.values()
Bây giờ chúng ta hãy triển khai phương thức array.values () trong JavaScript -
Ví dụ
<!DOCTYPE html>
<html>
<body>
<h2>Demo Heading</h2>
<p>Click the button to display the value...</p>
<button onclick="display()">Result</button>
<p id="test"></p>
<script>
function display() {
var arr = ['p', 'q', 'r'];
var res = arr.values();
document.getElementById("test").innerHTML = res.next().value
}
</script>
</body>
</html> Đầu ra
Nhấp vào nút “Kết quả” -
Ví dụ
<!DOCTYPE html>
<html>
<body>
<h2>Ranking Points</h2>
<p>Click to display the points...</p>
<button onclick="display()">Result</button>
<p id="test"></p>
<script>
function display() {
var points = ['10', '20', '30', '40', '50'];
document.getElementById("test").innerHTML = (points.values()).next().value
}
</script>
</body>
</html> Đầu ra
Nhấp vào nút “Kết quả” -