omkar4
1
Tell us what’s happening:
**Your code so far**
// Only change code below this line
var remainder=2;
11%3=2
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36.
Challenge: Finding a Remainder in JavaScript
Link to the challenge:
MrBondx
2
You are basically being asked to set var remainder equal to 11 divided 2 but using the % so you can get the remainder instead.
samolex
3
If 11 % 3 === 2 and you want to set the variable to equal 2
Then set the variable remainder to equal 11 % 3.
That is, variable = 11 % 3
omkar4
4
thank you for reply me i completed this task