JavaScript ForEach Equivalent
One thing with the For Loop in JavaScript is it doesn’t seem to be very well documented that you can use it to do an equivalent of a ForEach loop.
Here’s a short example of doing the ForEach loop equivalent in JavaScript:
var names = ["Chris", "Kate", "Steve"];
for(var i in names)
{
alert(names[i]);
}
In the above code, the variable i
is our iterator and by using the in
keyword the for
loop actually loops through all elements in the Array for us. Using this you no longer have to worry about the length of the array.
One thing to note about using this to iterate over an array is that it will not necessarily iterate over the array in the order of their index 0 to n. Basically, the order of iteration is not guaranteed.
More Information: https://developer.mozilla.org/en/JavaScript/Reference/Statements/for…in
Related Posts
-
How to Hide a Column in AG-Grid and Prevent it from Displaying in the Tool Panel
11 Oct 2023 -
JavaScript: Loop through Array (using forEach)
03 Oct 2023 -
JavaScript: Parse a String to a Date
28 Sep 2023 -
JavaScript: Format Date to String
28 Sep 2023 -
JavaScript: How to Convert Map to an Array of Objects
28 Sep 2023 -
Check if element exists using JavaScript or jQuery
25 Sep 2023