Exercises
-
Create a while loop that displays numbers as: 10 9 8 7 6 5 4 3 2 1. Put the numbers in HTML table cells.
-
Ask the user what the current hour is. If the hour is between 6 and 9 a.m., tell the user, "Breakfast is served." If the hour is between 11 a.m. and 1 p.m., tell the user, "Time for lunch." If the hour is between 5 and 8 p.m., tell the user, "It's dinner time." For any other hours, tell the user, "Sorry, you'll have to wait, or go get a snack."
-
Create a conversion table using the following formula:
C = (F – 32) / 1.8;
Start with a Fahrenheit temperature of 20 degrees and end with a temperature of 120 degrees; use an increment value of 5. The table will have two columns, one for Fahrenheit temperature values and one for those same temperatures converted to Celsius.
-
Ask the user for the name of the company that developed the JavaScript language. Alert the user when he or she is wrong, and then keep asking the user until he or she gets the correct answer. When the user gets it right, confirm it.
-
Use a switch statement to rewrite the following JavaScript code. Prompt the user for the number of a month rather than setting it to 8.
<script type=text/javascript> month = 8; if (month == 1) { alert("January"); } else if (month == 2) { alert("February"); } else if (month == 3) { alert("March"); } else if (month == 4) { alert("April"); } else if (month == 5) { alert("May"); } else if (month == 6) { alert("June"); } else if (month == 7) { alert("July"); } else if (month == 8) { alert("August"); } else if (month == 9) { alert("September"); } else if (month == 10) { alert("October"); } else if (month == 11) { alert("November"); } else if (month == 12) { alert("December"); } else{ alert("Invalid month"); } </script>
-
Consider the following example:
var start_time = (day == weekend) ? 12 : 9;
Rewrite the conditional statement using an if/else construct.