I have several students creating a score variable in their code.
Example:
BEFORE draw loop:
var score = 0
IN draw loop (for example):
text (score, 30, 50)
In Conditional of “ifTouching”
score = score + 1
Several of these students had the starting score show up as 1 instead of 0. I had another student with the score starting at 4 even though they had the above. Several students even looked at the code of their peers and couldn’t figure out the issue. Thoughts?