+ 1
Whatâs the result of using a modulus operator for 38%5?
help me please
3 Answers
+ 1
It gives remainder 3
learn this
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/4430/
+ 1
How many times can 5 go into 38?
5x7= 35
38 - 35 = 3
0
Javascript:
remainder = 38 % 5
console.log(remainder)
//output 3