这篇翻译不完整。请帮忙从英语翻译这篇文章。
The initial value of the @@iterator
property is the same function object as the initial value of the Array.prototype.values
property.
语法
arguments[Symbol.iterator]()
实例
Iteration using for...of
loop
function f() { // your browser must support for..of loop // and let-scoped variables in for loops for (let letter of arguments) { console.log(letter); } } f('w', 'y', 'k', 'o', 'p');
规范
浏览器兼容
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基础支持 | 52 | 46 (46) | ? | ? | 9 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基础支持 | ? | ? | 46.0 (46) | ? | ? | ? |