In Basic is there an equivilent to Continue in a For loop? eg
For x = 1 to 4
If x = 3 then Continue
console.log(x)
next x
Which would display
1
2
4
In Basic is there an equivilent to Continue in a For loop? eg
For x = 1 to 4
If x = 3 then Continue
console.log(x)
next x
Which would display
1
2
4
You’re close. Change Continue to continue and it should work.