这种问题怎么修改?

The body of a for-in should be wrapped in an if statement to filter unwanted properties from the prototype eslint报错这种问题应该怎么改?
代码这样写的

 for ( x in myemrList) {
          arr.push(myemrList[x].hospital_id);
        }


慕盖茨4494581
浏览 1204回答 1
1回答

白猪掌柜的

 for ( x of myemrList) {             arr.push(myemrList[x].hospital_id);              }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript