Answers for "loop elements in javascript"

1

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);
}
Posted by: Guest on October-22-2020
1

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>
Posted by: Guest on August-20-2020
1

looping in javascript

for (initialization; test condition; iteration statement) {
   Statement(s) to be executed if test condition is true
}
Posted by: Guest on August-20-2020

Code answers related to "loop elements in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language