Using a for..in Loop in JavaScript : For « Language Basics « JavaScript DHTML






Using a for..in Loop in JavaScript

  
<html>
<head>
<title>JavaScript Unleashed</title>
</head>
<body>
  <script language="JavaScript1.1" type="text/javascript">
  <!--
    var anObject = document;
    var propertyInfo = "";
   
    for (var propertyName in anObject) {
      propertyInfo = propertyName + " = " + anObject[propertyName];
      document.write(propertyInfo + "<br>");
    }
  // -->
  </script>
</body>
</html>

           
         
    
  








Related examples in the same category

1.For loop for lines
2.Check the loop counter
3. Drawing a Christmas Tree Using Nested For Loops
4.For loop
5.A Demonstration of a Nested Loop
6.A for Loop Used to Count from 0 to 99
7.Using the label Statement
8.Using the continue and break Statements
9.Use of the for Statement
10.The break Statement
11.The continue Statement
12.Labeled Statements
13.Plain for loop
14.For loop with alert dialog
15.Declare for loop counter
16.Control the loop step
17.Use for loop to fill an array
18.Use for in loop to go through an array