Create an HTML document that contains a Javascript that
- declares 3 variables a, b, and c
- displays the values for a, b, and c in the web browser window
- calculates and displays the largest, smallest, and middle value of the three variables
Sample broswer window content is given below.
a = 5
b = 3
c = 7
The largest is 7
The middle value is 5
The smallest is 3
Save your page as if.html
|