Complete the following program to display
multiplication of 6.40 and 300.
<! DOCTYPE html> <html>
<head> <title> Series </title> </head>
<body>
Attachments:
Answers
Answered by
4
Answer
var x = 6.40
var y = 300
document.write(x*y);
Similar questions