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
Copying data from one worksheet to another in Excel 2007
Excel Formula to search 2 lists to produce a 3rd list
Windows Sharepoint Services Drop in Access
Domain Security Policy in Windows Server 2008 domain controller?
Fonera wireless router conenctivity issues
WSS 3.0 create new configuration database on new SQL server
Sql query to get latest blog post from each blogger
Question about Windows messaging and this Mutex example
Restricted access domain user group with special permissions for Access MDB/MDE files
Problems installing (and using) U.C.C. (SAN) certificate with Exchange 2007