现在已经不存在ES6 Array.protoype.values
了,因为这已经有效了:
Array.prototype.values = function(){
return this[Symbol.iterator]();
}
let arr = [1,2,3,4,5];
let iterator = arr.values();
for(let num of iterator) console.log(num) // 1, 2, 3, 4, 5
答案 0 :(得分:1)
它打破了太多网站,因此被删除了。这些是需要关注的两个相关问题:
据我所知,没有ETA。