What does the % in a calculation? I can\'t seem to work out what it does.
%
Does it work out a percent of the calculation for example: 4 % 2
4 % 2
Modulus - Divides left hand operand by right hand operand and returns remainder.
If it helps:
1:0> 2%6 => 2 2:0> 8%6 => 2 3:0> 2%6 == 8%6 => true
... and so on.