The values()
method returns a new Array Iterator
object that contains the values for each index in the array.
arr.values()
A new Array Iterator
object.
for...of
loopvar arr = new Uint8Array([10, 20, 30, 40, 50]); var eArray = arr.values(); // your browser must support for..of loop // and let-scoped variables in for loops for (let n of eArray) { console.log(n); }
var arr = new Uint8Array([10, 20, 30, 40, 50]); var eArr = arr.values(); 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
Specification |
---|
ECMAScript (ECMA-262) The definition of '%TypedArray%.prototype.values()' in that specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
values |
38 | 14 | 37 | No | 25 | 10 |
Mobile | ||||||
---|---|---|---|---|---|---|
values |
38 | 38 | 37 | 25 | 10 | 3.0 |
Server | |
---|---|
values |
0.12 |
TypedArray
TypedArray.prototype.entries()
TypedArray.prototype.keys()
TypedArray.prototype[@@iterator]()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values