Write a program that accepts two inputs from the user (storing them in separate variables), and then calculates the remainder of division from the first input value by the second input value. (In other words, divide the first number by the second number, and then show the remainder to the user.)
Tip: In JavaScript (and most other languages), the modulus operator is the percentage symbol: "%"
Write a program that accepts two inputs from the user (storing them in separate variables), and then calculates the remainder of division from the first input value by the second input value. (In other words, divide the first number by the second number, and then show the remainder to the user.)
Tip: In JavaScript (and most other languages), the modulus operator is the percentage symbol: "%"