Basic JavaScript - Finding a Remainder in JavaScript

Tell us what’s happening:
Describe your issue in detail here.

Your code so far
const remainder = 2;
remainder = 2 % 0;

const remainder = 2;
remainder = 2 % 0; 

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Finding a Remainder in JavaScript

Link to the challenge:

Hello~!

  • You can’t reassign a const variable.
  • The instructions ask you to set remainder equal to the remainder of 11 divided by 3. Have you done that?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.