📜  JavaScript | array.values()

📅  最后修改于: 2022-05-13 01:58:10.268000             🧑  作者: Mango

JavaScript | array.values()

array.values()函数是 JavaScript 中的一个内置函数,用于返回一个新的数组迭代器对象,该对象包含数组中每个索引的值,即打印数组的所有元素。
句法:

arr.values()

返回值:
它返回一个新的数组迭代器对象,即给定数组的元素。
例子:

Input:
A = ['a', 'b', 'c', 'd']
Output:
a, b, c, d
Here as we see that input array contain some 
elements and in output same elements get printed.

让我们看看关于 array.values()函数的 JavaScript 程序:

JavaScript
// Input array contain some elements
var A = [ 'Ram', 'Z', 'k', 'geeksforgeeks' ];
 
// Here array.values() function is called.
var iterator = A.values();
 
// All the elements of the array the array
// is being printed.
console.log(iterator.next().value);
console.log(iterator.next().value);
console.log(iterator.next().value);
console.log(iterator.next().value);


JavaScript
// Input array contain some elements.
var array = [ 'a', 'gfg', 'c', 'n' ];
 
// Here array.values() function is called.
var iterator = array.values();
 
// Here all the elements of the array is being printed.
for (let elements of iterator) {
  console.log(elements);
}


输出:

> Ram, z, k, geeksforgeeks

应用:
JavaScript 中的这个 array.values()函数用于打印给定数组的元素。
让我们看看关于 array.values()函数的 JavaScript 程序:

JavaScript

// Input array contain some elements.
var array = [ 'a', 'gfg', 'c', 'n' ];
 
// Here array.values() function is called.
var iterator = array.values();
 
// Here all the elements of the array is being printed.
for (let elements of iterator) {
  console.log(elements);
}

输出:

> a, gfg, c, n

支持的浏览器:

  • 谷歌浏览器 66 及以上
  • Microsoft Edge 12 及更高版本
  • 火狐 60 及以上
  • Opera 53 及以上
  • Safari 9 及更高版本

JavaScript 以网页开发而闻名,但它也用于各种非浏览器环境。您可以按照这个 JavaScript 教程和 JavaScript 示例从头开始学习 JavaScript。