+ 1
What is a module %??
6 Answers
+ 6
Modulus is an operator which returns back the remainder.
For eg :
6%5 = 1
17%7 = 3
https://www.sololearn.com/learn/JavaScript/1130/?ref=app
+ 2
In:
a % b = c
c is always a number between 0 and b.
c may equal 0, but c would never equal b.
+ 1
Remainder or the leftover.
25 % 20 = 5
20 goes into 25 once, leaving 5 as the remainder.
+ 1
Tyankyou all for answerd, they help me
0
Thanks