The initial value of the @@iterator property is the same as the initial value of the values()
property.
arr[Symbol.iterator]()
Iteration using for...of loop
var arr = new Uint8ClampedArray([10, 20, 30, 40, 50]); for (let n of arr) { console.log(n);//from w w w . jav a 2s .c o m }
Alternative iteration
var arr = new Uint8ClampedArray([10, 20, 30, 40, 50]); var eArr = arr[Symbol.iterator](); console.log(eArr.next().value); // 10 console.log(eArr.next().value); // 20 console.log(eArr.next().value); // 30 console.log(eArr.next().value); // 40 console.log(eArr.next().value); // 50