其他分享
首页 > 其他分享> > ES6学习---迭代器的运用,自定义遍历数据--for of

ES6学习---迭代器的运用,自定义遍历数据--for of

作者:互联网

        //声明一个对象
        const banji = {
            name: "终极一班",
            stus: [
                'xiaoming',
                'xiaoning',
                'xiaotian',
                'knight'
            ],
            [Symbol.iterator]() {
                //索引变量
                let index = 0;
                //
                let _this = this;
                return {
                    next: function () {
                        if (index < _this.stus.length) {
                            const result = { value: _this.stus[index], done: false };
                            //下标自增
                            index++;
                            //返回结果
                            return result;
                        }else{
                            return {value: undefined, done: true};
                        }
                    }
                };
            }
        }

        //遍历这个对象 
        for (let v of banji) {
            console.log(v);
        }

 

标签:ES6,return,自定义,stus,index,---,let,result,done
来源: https://www.cnblogs.com/leiyanting/p/15389472.html