Computer Science, asked by satvikshubh345, 5 months ago

var num1, num2, num3,product;
window.alert("product of 2 numbers");
num1 = window.prompt("enter first number");
num2 = window.prompt("enter second number");
num3 = window.prompt("enter third number");
product = parseInt(num1)* parseInt(num2) * parseInt(num3);
document.writeln("The product of two numbers is :" + product + ");



why is this code not working

Answers

Answered by Anonymous
0

Answer:

refer to this attachment ⬆️

Attachments:
Similar questions