JavaScript for ... in loop
for...indöngü, bir nesnenin özelliklerinde döngü yapmak için kullanılır. Henüz Nesneleri tartışmadığımız için, bu döngüde kendinizi rahat hissetmeyebilirsiniz. Ancak nesnelerin JavaScript'te nasıl davrandığını anladıktan sonra, bu döngüyü çok yararlı bulacaksınız.
Sözdizimi
'For..in' döngüsünün sözdizimi -for (variablename in object) {
statement or block to execute
}
Her yinelemede, object atandı variablename ve bu döngü nesnenin tüm özellikleri tükenene kadar devam eder.
Misal
'For-in' döngüsünü uygulamak için aşağıdaki örneği deneyin. Web tarayıcısınınNavigator nesne.
<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>
Çıktı
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...