Question: JavaScript: I'm not sure how to start this one. Declare and define a function called displayRem that uses console.log() to display the remainder of dividing

JavaScript: I'm not sure how to start this one.

Declare and define a function called displayRem that uses console.log() to display

 

Declare and define a function called displayRem that uses console.log() to display the remainder of dividing the first parameter with the second one (use the modulus operator %). Ex: displayRem(4,3) displays "1" 1 2 Your solution goes here */ 3 4 displayRem(4, 3); // Code will be tested once with arguments 4, 3 and again with arguments 7, 10 5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Sure Here is the function displayRem that calculates and displays the remainder of dividing the fi... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!