Aleksey
7
Q:

else if

if (condition1) {
  //  block of code to be executed if condition1 is true
} else if (condition2) {
  //  block of code to be executed if the condition1 is false and condition2 is true
} else {
  //  block of code to be executed if the condition1 is false and condition2 is false
}
37
var age=20;
if (age < 18) {
	console.log("underage");
} else {
	console.log("let em in!");
}
27

if (hour < 18) {

    greeting = "Good day";

 }
else {

    greeting = "Good evening";

 }
 
5
if (5 < 10) {
	console.log("5 is less than 10");
} else {
	console.log("5 is now bigger than 10")
}
6

if (condition) {

  //  block of code to be executed if the condition is true

 }

 
5

if (hour < 18) {

    greeting = "Good day";

 } 
4
if ( x > 10 )
{
cout << "x is greater than 10";
}
else
{
cout << "x is less than 10";
}
-1

New to Communities?

Join the community