I've used this code
for(var i=0;i++;)
in my javascript code. How ever i'm learning and not quite sure how this can be used in an array and if its right?
Thanks
|
I've used this code
in my javascript code. How ever i'm learning and not quite sure how this can be used in an array and if its right? Thanks |
|||||||
|
|
Guffa has already pointed out how a for loop works, now let me tell you why this one won't even execute:
What it does:
|
|||
|
|
|
No, it's not quite right. The three parameters in the
For use with an array, you would use the array length in the condition:
This is the most common way to use the |
|||||||||||||
|
|
You can use for each for this one. Its possible in javascript . Take a look https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/forEach |
|||||||||
|