JavaScript for ... in loop
ザ・ for...inloopは、オブジェクトのプロパティをループするために使用されます。オブジェクトについてはまだ説明していないため、このループに慣れていない可能性があります。しかし、JavaScriptでオブジェクトがどのように動作するかを理解すると、このループが非常に役立つことがわかります。
構文
'for..in'ループの構文は次のとおりです。for (variablename in object) {
statement or block to execute
}
各反復で、からの1つのプロパティ object に割り当てられています variablename このループは、オブジェクトのすべてのプロパティが使い果たされるまで続きます。
例
次の例を試して、「for-in」ループを実装してください。Webブラウザのを印刷しますNavigator オブジェクト。
<html>
<body>
<script type = "text/javascript">
<!--
var aProperty;
document.write("Navigator Object Properties<br /> ");
for (aProperty in navigator) {
document.write(aProperty);
document.write("<br />");
}
document.write ("Exiting from the loop!");
//-->
</script>
<p>Set the variable to different object and then try...</p>
</body>
</html>
出力
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...