El for ... in bucle se utiliza para recorrer las propiedades de un objeto. Como no hemos discutido objetos, sin embargo, es posible que no se sienten cómodos con este bucle.Pero una vez que entienda cómo los objetos se comportan de JavaScript, se encuentra este lazo muy útil.
Sintaxis
for (variablename in object){
statement or block to execute
}
En cada iteración, una propiedad del objeto se asigna a nombrevariable y este bucle continúa hasta que todas las propiedades del objeto se agotan.
Ejemplo
Pruebe el siguiente ejemplo para implementar bucle 'for-in'. Imprime del navegador Web Navigator objeto.
<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>
Salida
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...
No hay comentarios:
Publicar un comentario