Conditional Statements and Loop Control in TypeScript
Introduction
Welcome! In this lesson, we're exploring special instructions in the TypeScript language: Conditional Statements, along with the break and continue statements. As we've learned, loops allow us to execute a block of code numerous times. By combining these loops with conditional statements and incorporating the useful break and continue instructions, we achieve more robust and efficient code. A key feature of TypeScript is its type-checking, which enhances the reliability of your conditions. Let's dive in!
The 'if' Statement
In TypeScript, the if statement triggers actions in our code based on a specific condition. Consider this straightforward example, where the if statement determines which message to print based on the value of temperature:
The "else if" Statement
We can evaluate multiple conditions using else if. This phrase means, "If the previous condition isn't true, then check this one":
The 'break' Statement
We use the break statement whenever we want to exit a loop prematurely once a condition is met:
