* CONTROLLING THE PROGRAM FLOW ** WHAT IS IT? - a control structure is the thing that directs the manner in which the browser will perform the JavaScript commandsw *** SEQUENCE CONTROL STRUCTURE - a sequence control structure are commands are executed one after the other *** SELECTION CONTROL STRUCTURE - there's a selection **** EXAMPLES ***** IF STATEMENT - true or false, if first thing true, you perform the next and if false, die :D ***** IF-THEN-ELSE STATEMENT - if this is false, do this, if not, die ***** DO-WHILE - repeeat the true thing ***** DO-UNTIL - false action until its true