[Solved] Problems with the “+” and “-” operators
[ad_1] If you change line 8 to: array[i+1] = 3; then the number 3 will go all the way to the end of the array (well, beyond the end of the array and I’ll be damned to find out what Javascript does then!). This is because the loop traverses the array in increasing order and … Read more