+ 1
What does the % symbol mean again?
3 Respostas
+ 11
It is the modulus operator. It returns the remainder of a mathematical expression. E.g.
5%2 // outputs 1
6%3 // outputs 0
2%3 // outputs 2
+ 2
It's the modulus operator
+ 2
It's main modulus.