Week 6 — Numbers, Strings, and Choice statements
JavaScript
JavaScript topics
JavaScript examples
Debugging
Alert, prompt and confirm popups
- window.alert(String)
- window.prompt(String, optional_default_string)
- window.confirm(String)
Choice statements
Example programs.
- Using if statements
here.
- Using switch statements
here.
Loops
Example programs.
- Night out,
deciding what to do based on cash on hand using a nested if statement
program, and a while loop program
- While loop control statement
example.
- Do while loop control statement
example.