当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript array.values()用法及代码示例


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

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程序:


// 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);

输出:

> Ram, z, k, geeksforgeeks

应用:
JavaScript中的array.values()函数用于打印给定数组的元素。
我们来看一下array.values()函数上的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



注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | array.values()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。