Write a JavaScript program to calculate multiplication and division of two numbers (input from the user).

 var a = Number(prompt("enter the number"))

var b = Number(prompt("enter the number"))

console.log(a+b)
console.log(a*b)

Comments

Popular posts from this blog

practice test of Arithmetic Operations: