Finding a Remainder in JavaScript///

Tell us what’s happening:

Your code so far


// Only change code below this line
11 % 3 = 2
(11 / 3 ) = 3
3 * 3 = 9
11 - 9 = 2
var remainder;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/finding-a-remainder-in-javascript

you are just writing things, you are not telling what to do to the program. The example in this case is not much code, is mostly math and you can’t copy it to write the code you need to solve the challenge

And you are not following the challenge request, try finding how to do this on your own:

Set remainder equal to the remainder of 11 divided by 3 using the remainder ( % ) operator.