loop elements in javascript code example

Example 1: js loop

var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) { 
  console.log(colors[i]);
}

Example 2: loop elements in javascript

var list = [{a:1,b:2}, {a:3,b:5}, {a:8,b:2}, {a:4,b:1}, {a:0,b:8}];

for (var i = list.length - 1, item; item = list[i]; i--) {
  console.log("Looping: index ", i, "item", item);
}

######### ES6 Update ################

for (let item of list) {
    console.log("Looping: index ", "Sorry!!!", "item" + item);
}

Example 3: looping in javascript

for (initialization; test condition; iteration statement) {
   Statement(s) to be executed if test condition is true
}

Example 4: looping in javascript

<html>
   <body>      
      <script type = "text/javascript">
         <!--
            var count;
            document.write("Starting Loop" + "<br />");
         
            for(count = 0; count < 10; count++) {
               document.write("Current Count : " + count );
               document.write("<br />");
            }         
            document.write("Loop stopped!");
         //-->
      </script>      
      <p>Set the variable to different value and then try...</p>
   </body>
</html>

Tags:

Misc Example