JavaScript重写Symbol(Symbol.iterator)实现迭代器(3)

方便json对象迭代可以用…object

示例图
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <h1>json对象或数组遍历重写iterator接口3</h1>
</body>
<script>
    function iteratorUtil() {
        let index = -1;
        let _this = this;
        if (_this instanceof Array) {
            return {
                next() {
                    let len = _this.length;
                    //console.log(len);
                    index++;
                    //console.log(index);
                    return index < len ? {
                        value: _this[index],
                        done: false
                    } : {
                        value: _this[index],
                        done: true
                    };
                }
            };
        } else {
            let keys = Object.keys(_this);
            let len = keys.length;
            return {
                next() {
                    index++;
                    let key = keys[index];
                    return index < len ? {
                        value: _this[key],
                        done: false
                    } : {
                        value: _this[key],
                        done: true
                    };
                }
            };
        }

    }

    let user = {
        username : '张三',
        age : 123,
        sex: '妖',
        eat(){
            console.log('吃西瓜');
        }
    };
    //json对象迭代
    Object.prototype[Symbol.iterator] = iteratorUtil;
    Array.prototype[Symbol.iterator] = iteratorUtil;
    for(const item of user) {
        console.log(item);
    }
    console.log('%c-------------------------------------------','color:red');
    console.log(...user);

    console.log('%c-------------------------------------------','color:red');

    let user2 = [...user,...user]
    //json对象 转数组
    console.log(user2);
    console.log('%c-------------------------------------------','color:red');
    //数组迭代
    let arr = [1,2,3,4];
    for (const item of arr) {
        console.log(item);
    }

    console.log('%c-------------------------------------------','color:red');
    console.log(...arr);

</script>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值