Javascript Video Tutorials 3: Branching and Conditionals




Javascript Video Tutorial Podcast » Podcast Feed show

Summary: In this segment of the Javascript Tutorial we’ll look at conditionals– namely the “if” statement. The if statement is used for a program to make a decision based on some logical test. For example “if” the player’s score is higher than the high score, than the players score is the new high score. Each if statement is paired with an expression which evaluates to true or false and the if code block as associated else blocks are– or are not– executed. It’s easy!