Sunday, May 6, 2018

for loop - JavaScript - myArray.length

var myArray = ["Doug", "Laura", "Vera", "Gabriela"];

for (var i =0; i < myArray.length; i++)

{
     console.log("Hello, " + myArray[i]);

//looping through an array with a for each loop
not so common and it doesn't provide a lot of granularity during the construction

for (var element of myArray)

     console.log("Good bye, " + element);
}
  

No comments:

Post a Comment

The Diary Of A CEO features a discussion on longevity and cellular health.

  This video from The Diary Of A CEO features a discussion on longevity and cellular health. The conversation focuses on how specific lifes...