码迷,mamicode.com
首页 > 移动开发 > 详细

The body of a for-in should be wrapped in an if statement to filter unwanted properties from the pro

时间:2021-04-27 14:25:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgba   没有   code   一个   rom   The   shu   rgb   filter   

ESLint模式下for in遍历对象会报错,可以这样解决:

let val = { shu: [1, 2, 3] };
for (let item in val) {
  if (val.hasOwnProperty(item)) { 
    console.log(item);
  }
}

因为我们在遍历一个对象之前应该判断一下这个对象是否有自身的属性(非继承),如果这个对象是个空对象,那么就没有必要遍历了呗~,提升代码的效率。

The body of a for-in should be wrapped in an if statement to filter unwanted properties from the pro

标签:rgba   没有   code   一个   rom   The   shu   rgb   filter   

原文地址:https://www.cnblogs.com/qianxiaoPro/p/14703058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!