Microsoft
Software
Hardware
Network
Question : JavaScript: i++ in a loop
Because i++ adds 1, I have to start with -1 for my loop to work:
1: 2: 3: 4:
var i=-1; while(i++<myArray.length-1){ alert(i); }
That code works but it seems awkward. Is there a way better to do this, so that I can start with:
var i = 0;
Related Solutions:
JavaScript: Alert when checkbox value changed
Answer : JavaScript: i++ in a loop
for ( var i = 0; i < myArray.length; i++ ) {
alert( i );
}
Is the common idiom
Random Solutions
Outlook VBA macro - Set appointment item to "show time as tentative"
GridView RowUpdating Problem
Need help getting drop down menu to display on top of main content area
Problem with Declaring a Table Variable within a Table Function
parameter values for search
How to write a correlated query between tables
Using Modules in VBA to prevent repeating codes in sheets
Java Timer Task
HTML 5: sequence diagram: linked components move together
negative time