for..in or for..of Object keys

ぃ、小莉子 提交于 2019-12-19 09:17:13

问题


So my IDE doesn't like when I use a for..in loop to iterate over an object keys. I get a warning:

Possible iteration over unexpected (custom / inherited) members, probably missing hasOwnProperty check

So I get what it's saying, so in that case would it be better to use something like for (const key of Object.keys(obj)) instead of for (const key in obj)?

Are there any real differences between the two, performance-wise?


回答1:


There is a slight difference between looping though the Object.keys array and looping using a for...in statement, which in the majority of cases would not be noted. Object.keys(obj) returns only an array with the own properties of the object, while the for...in returns also the keys found in the prototype chain, in order the latter to be done extra check to the prototype of the obj is needed and then to the prototype of the prototype and so on and so forth, until the whole prototype chain has been visited. This certainly makes the second approach less efficient than the first, but as I have already mentioned, this difference would be hardly noticed in the majority of cases.

For a more formal approach, as it is stated in the MDN:

The Object.keys() method returns an array of a given object's own enumerable properties, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well).




回答2:


You can still use for(var key in obj){}. It seems it is expecting is Object.hasOwnProperty inside the for..in loop

This is because for..in will also look in prototype chain & will return true even if the key is in prototype chain.

Whereas Object.hasOwnProperty will only return true if key is its owns property.

You may do like this

for(var key in obj){
 if(obj.hasOwnProperty(key){
  // rest of code}
}


来源:https://stackoverflow.com/questions/43446241/for-in-or-for-of-object-keys

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!