Easy actionscript question for you guys!

Just trying to learn some actionscript from this book! There is this script

if (inputNumber % 2 ==0 ){
gotoAndStop(“even”);
}else{
gotoAndStop(“odd”);
}
}

I understand everything, and it works great. But what I don’t get is, if you place “24” you obviously get “12” and it goes to “even”. Ok that is fine.

But according to the script to me it looks like the actual number divided by 2 literally has to equal 0. Is it because it is impossible?

:expressionless: