Associative object arrays of document : Introduction : Document JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Document » Introduction »

 

Associative object arrays of document

















<HTML>
<HEAD>
   <TITLE>Associative object arrays</TITLE>
<SCRIPT>
function showProperties (theObject){
   for (var i in theObject) {
      if (theObject[i!= null) {
          document.write(i + " : " + theObject[i"<br>");
           
      }
      else {
         document.write(i + "<br>");
      }
   }
   return;
}
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT>
showProperties(window.document);
</SCRIPT>
</HTML>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Document
» Introduction