Set remainder equal to the remainder of 11 divided by 3 using the remainder (% ) operator.
–I guess the biggest part I am struggling with is how to use the % effectively, I have tried many different layouts, different combinations. Any pointers would be appreciated.
Your code so far
const remainder = 2;
11 % 3;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Finding a Remainder in JavaScript
That test is saying that remainder should have 2 as its value after your use the % operator to set the value of remainder to what the remainder of 11 / 3 is.