摘要: for...of & for...in 两者都可以用于遍历,不过for in遍历的是数组的索引(index),而for of遍历的是数组元素值(value),对此做了几组实验 关于数组 测试数据: const menu = ['tomato', 'egg', 'rice'] 直接遍历数组:for.. 阅读全文
posted @ 2023-02-15 15:50 kihyun 阅读(260) 评论(0) 推荐(0) 编辑
摘要: This what it 'this' special variable that is created for every execution context. this是在每一个执行上下文中产生的变量的,每一个执行上下文都有自己的this值。this不是静态的,它取决于函数如何被调用,它的值会在 阅读全文
posted @ 2023-02-15 14:37 kihyun 阅读(15) 评论(0) 推荐(0) 编辑