美文网首页
Symbol.iterator

Symbol.iterator

作者: 纱云 | 来源:发表于2021-12-08 10:04 被阅读0次

    const obj = {
    store:['foo','bar','gba'],
    [Symbol.iterator]:function(){
    let index = 0
    const self = this
    return{
    next:function(){
    const result = {
    value:self.store[index],
    done:index>=self.store.length
    }
    index++
    return result;
    }
    }
    }
    }
    for(const item of obj){
    console.log(item);
    }

    相关文章

      网友评论

          本文标题:Symbol.iterator

          本文链接:https://www.haomeiwen.com/subject/uvazxrtx.html