JavaScript
HTML
CSS
jQuery
PHP
SQL
WordPress
JavaScript Reference

Quick Reference

The if…else statement executes a block of code if a specified condition is true, and optionally, another block of code if false.

In an if…else statement, we can have the following:

  • if – a block of code to be executed if a condition is true
  • else if (optional) – a new condition to test, and new block of code to be executed, if the first condition is false, but the new condition is true
  • else (optional) – a block of code to be executed if the none of the conditions are true
				
					<!-- html element to place output -->
<p id="my_output"></p>
				
			

The following checks what the hour of the day is and then looks at the “if” to see if that is true. If not, it looks at the “else if” to see if that is true. If neither is true, it will use the code within the “else”.

				
					// variables
let my_hour = new Date().getHours();
let my_greeting = '';

// conditions
if (my_hour < 12) {
    my_greeting = 'Good morning';
}
else if (my_hour < 18) {
	my_greeting = 'Good afternoon';
}
else {
    my_greeting = 'Good evening';
}

// output to HTML element
document.getElementById('my_output').innerHTML = my_greeting;
				
			

Output

				
					Good afternoon
				
			

Syntax

				
					if (condition) {
    // code to run if true
}
				
			
				
					if (condition) {
    // code to run if true
}
else {
    // code to run if the condition above is false
}
				
			
				
					if (condition) {
    // code to run if true
}
else if (new condition) {
    // code to run if true
}
else {
    // code to run if both conditions above are false
}
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

JavaScript
HTML
CSS
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.