Question A
Why is it important to avoid the use of reserved words as you define variables, functions, methods, or identifiers? Do you have any get-arounds to the use of these reserved words that you like to use?
(max 80 words)
JavaScript in HTML
Note: To assist you in the completion of this assignment please review Chapter 2 (in order to figure out how to incorporate JavaScript in HTML) and Chapter 2 and 7 (to figure out how to access elements).
Create a web page that has 2 text boxes that users can enter their weight in pounds and the other to enter height in inches and a button with an onclick event that calls a function called calcBMI which performs the BMI calculation.
The expression for BMI is:
Weight*703/(height*height).