1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
const info = { names: ['a', 'b', 'c'],
[Symbol.iterator]() { let index = 0 const infoInterator = { next: => () { if (index < this.names.length) {
return { done: false, value: this.names[index++] } } else {
return { done: true, value: undefined } } } } return infoInterator } }
const infoInterator = info[Symbol.iterator]()
console.log(infoInterator.next()) console.log(infoInterator.next()) console.log(infoInterator.next()) console.log(infoInterator.next())
for (let item of info) { console.log(item) }
const nums = [1, 2, 3] const numsIterator = nums[Symbol.iterator]()
console.log(numsIterator.next()) console.log(numsIterator.next()) console.log(numsIterator.next()) console.log(numsIterator.next())
|