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 :    


Happy Coding:)


Thank you...


Comments

Popular posts from this blog

Day 100: Date Time to Number of 100DaysCodingChallenge

Day 64: Pattern using loops of 100DaysCodingChallenge

Day 20: Positive Number of 100DaysCodingChallenge