I was wondering if somebody could explain this to me.
I am trying to find numbers that are NOT divisible by other numbers.
Originally i wrote:
if i%3!==0
however it came up with an error and said it was invalid syntax
Instead my code now reads
if i%3!=0
This works but i don't understand why i have to take the 2nd equals sign out.
Many thanks