📜  JavaScript for … in循环

📅  最后修改于: 2020-12-18 04:56:47             🧑  作者: Mango


for … in循环用于循环访问对象的属性。由于我们尚未讨论对象,因此您可能不喜欢此循环。但是一旦了解了对象在JavaScript中的行为,您就会发现此循环非常有用。

句法

for..in循环的语法是-

for (variablename in object) {
   statement or block to execute
}

在每次迭代中,将来自对象的一个属性分配给变量名,并且此循环一直进行到对象的所有属性用尽为止。

尝试以下示例实现“ for-in”循环。它打印Web浏览器的Navigator对象。

      
      

Set the variable to different object and then try...

输出

Navigator Object Properties 
serviceWorker 
webkitPersistentStorage 
webkitTemporaryStorage 
geolocation 
doNotTrack 
onLine 
languages 
language 
userAgent 
product 
platform 
appVersion 
appName 
appCodeName 
hardwareConcurrency 
maxTouchPoints 
vendorSub 
vendor 
productSub 
cookieEnabled 
mimeTypes 
plugins 
javaEnabled 
getStorageUpdates 
getGamepads 
webkitGetUserMedia 
vibrate 
getBattery 
sendBeacon 
registerProtocolHandler 
unregisterProtocolHandler 
Exiting from the loop!
Set the variable to different object and then try...