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)
var a = Number(prompt("enter the number"))
Comments
Post a Comment