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 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
Sure Here is the function displayRem that calculates and displays the remainder of dividing the fi... View full answer
Get step-by-step solutions from verified subject matter experts
