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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。