Day 11: Modulo of two Integer Numbers of 100DaysCodingChallenge
Hello all,
I have started the 100 days of coding challenge to improve my programming skills..
Today is the Day11 of 100DaysCodingChallenge for
Modulo of two Integer Numbers taken input by the user.
Code :
let a = prompt("Enter a : ");
let b = prompt("Enter b : ");
let c = a % b;
console.log("a % b is : ", c);
Output :
Comments
Post a Comment