% (Modulo Operator)
Description: Returns the remainder of dividing the first number by the second.
Example
let result = 17 % 5 // result = 2
result = 17 % 5 // result = 2
Description: Returns the remainder of dividing the first number by the second.
let result = 17 % 5 // result = 2
result = 17 % 5 // result = 2