Array.prototype[@@iterator]()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since May 2018.
O valor inicial da propriedade @@iterator
é o mesmo objeto função que o valor inicial da propriedade values()
.
Sintaxe
arr[Symbol.iterator]()
Exemplos
Iteração usando laço for...of
js
var arr = ["w", "y", "k", "o", "p"];
// seu navegador deve suportar laço for..of
// e variáveis de escopo let em laços for
for (let letter of arr) {
console.log(letter);
}
Iteração alternativa
js
var arr = ["w", "y", "k", "o", "p"];
var eArr = arr[Symbol.iterator]();
console.log(eArr.next().value); // w
console.log(eArr.next().value); // y
console.log(eArr.next().value); // k
console.log(eArr.next().value); // o
console.log(eArr.next().value); // p
Especificações
Specification |
---|
ECMAScript Language Specification # sec-array.prototype-%symbol.iterator% |
Compatibilidade com navegadores
BCD tables only load in the browser