the following code goes into infinite loop and a crash in the webpage I need to know what's wrong with it?
for (var i = 0; i < 2; i+1) {
for (var j = i; j < 8; j + 2) {
console.log(arr[j].Qu);
}
console.log(arr[i]);
}
jequalsi?