JavaScript If Else Statement

If Else Statement In JavaScript

If condition checks whether a specific condition is true or false.

Logic condition executes a block of code if the specified condition is true. Else specifies a block to be executed, if the same condition is false.

Logic conditions are used to perform different actions based on different decisions.

Common Syntax For Manipulating If Else Condition In JavaScript

Common If Else Conditions

Ojamboshop.com Learning JavaScript If Else Condition
Name Description Example
if (condition) { //code } Code executed if condition is true if (num1 > num2) { console.log(“true”); }
else if (condition) { //code } Code executed if else if condition is true else if (num1 == num2) { console.log(“true”); }
else { //code } Code executed if else if condition is false else { console.log(“true”); }
Name Description Example

JavaScript If Else Condition Snippet

// OjamboShop.com Learning JavaScript If Else Condition Tutorial //
let num5 = 22;
let num6 = 33;
if (num5 > num6) {
	console.log("num5 is greater than num6");
} else if (num5 == num6) {
	console.log("num5 and num6 are equal");
}
else {
	console.log("num5 is not greater than num6");
}

JavaScript If Else Code
OjamboShop.com Web IDE JavaScript If Else Code

JavaScript If Else Result
OjamboShop.com Web IDE Compiler Displaying JavaScript If Else Result


Usage

You can use any IDE or text editor and the web browser to compile and execute JavaScript code. For this tutorial, the OjamboShop.com Learning JavaScript Course Web IDE was used to input and compile JavaScript code for the if else conditions.

Open Source

JavaScript follows the ECMAScript standard and is licensed under the W3C Software License by web browser vendors and runtime environment vendors. This allows commercial use, modification, distribution, and allows making derivatives proprietary.

Learn Programming Courses:

Courses are optimized for your web browser on any device.

OjamboShop.com Learning JavaScript Course
OjamboShop.com Learning JavaScript Interactive Online Course

Limited Time Offer:

OjamboShop.com is offering 20% off coupon code SCHOOL for Learning JavaScript Course until End Day 2024.

Learn Programming Ebooks:

Ebooks can be downloaded to your reader of choice.

OjamboShop.com Learning JavaScript Ebook
OjamboShop.com Learning JavaScript Ebook Cover Page

Conclusion:

JavaScript makes it easy to use if statements. Use else to specify a block of code to be executed, if the same condition is false.

Take this opportunity to learn the JavaScript programming language by making a one-time purchase at Learning JavaScript Course. A web browser is the only thing needed to learn JavaScript in 2024 at your leisure. All the developer tools are provided right in your web browser.

If you prefer to download ebook versions for your reader then you may purchase at Learning JavaScript Ebook

References:

Leave a Reply

Your email address will not be published. Required fields are marked *