Learn
Conditional Statements
If Statement
In programming, it is often required to execute different blocks of code depending on certain conditions. The if statement is a fundamental conditional statement that allows you to control the flow of your program based on these conditions. In this lecture, we will explore the if statement in detail and learn how to use it effectively.
Syntax
The if statement follows a specific syntax:
The if statement evaluates the specified condition inside the parentheses. If the condition is true, the code block enclosed within the curly braces will be executed. However, if the condition is false, the code block will be skipped, and the program will move on to the next block of code after the if statement.
Example
Let's consider a simple example to understand how the if statement works:
In this example, we have declared a variable x and assigned it a value of 10. The if statement checks if the value of x is greater than 5. Since this condition is true, the code block inside the if statement will be executed, and the message "x is greater than 5" will be printed to the console.
Instructions
Declare an if statement that checks if x is greater than y.
Inside the if statement, console.log the message:
Sign up to start coding
Already have an account?
Sign In
