Chapter 6. Under Certain Conditions
6.1 Control Structures, Blocks, and Compound Statements
If you were confronted with the above signpost, you’d have to decide which direction to take. People control their lives by making decisions, and so do programs. In fact, according to computer science books, a good language allows you to control the flow of your program in three ways. It lets you
• Execute a sequence of statements.
• Branch to an alternative sequence of statements, based on a test.
• Repeat a sequence of statements until some condition is met.
Well, then JavaScript must be a good language. We’ve already used programs that execute a sequence ...
Get JavaScript by Example now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.