hi,
I have a gameProgress (e) where each position in my array are stars (1,2) or blocked levels (-1)
I want to count the position of the blocked level so i use this ;
var e=[1,2,1,1,-1];
var n = 0;
while (e[n] < 0) {
n++;
var position=n;
}
console.log(position);
// expected output: 4 and result is 3 ???
but the result is not 4 => e=[1,2,1,1,-1] could you tell me why ?