In this challenge it says, stop the loop when i does not equal 4 ( i !=4)
The loop never equals 4 so surely the loop never runs?
but the exercise reads like the loop is infinite?
I don’t understand why the loop isn’t i === 4… although, did i read somewhere this statement always has to be < or > as it’s sort of counting through…as opposed to being just stagnant i guess at this specific point…
so is this why !=4 works because its like the opposite of a fixed point?