const randomObject = 5;
if(randomObject < 2) {
console.log("The Random Object has a value more than 2");
}
else {
console.log("The Random Object has a value less than 2");
}
if(Boolean_expression) {
// Statements will execute if the Boolean expression is true
}
If the Boolean expression evaluates to true then the block of code inside the if statement will be executed. If not, the first set of code after the end of the if statement (after the closing curly brace) will be executed.
const count = 20;
if (count === 0) {
console.log('There are no students');
} else if (count === 1) {
console.log('There is only one student');
} else {
console.log(`There are ${count} students`);
}
if( name = 'george washington'):
print("You have the same name as the first president of the United States")
// python
else:
print("You do not have the same name as George Washington")
#converting weight into pounds orkilograms.
given_weight=int(input('given_weight'))
unit=input('(K)G or (L)bs')
if unit.upper() == 'K':
pounds=given_weight/0.45
print('weight in pounds',pounds)
else:
kilograms=given_weight*0.45
print('weight in kg',kilograms)
________________________________________________________________________________
const number = (Math.random() - 2.5) * 5;
if (number < 0) {
console.log('Number is negative');
}
if (number = 0) {
console.log('Number is zero');
}
if (number > 0) {
console.log('Number is positive');
}
How is written:
if() {
}
"if" is used to do something just IF a condition is true
In parenthesis, you place your condition. The condition should be of type true/false.
Examples:
if(1 + 2 == 3); if(4 > 3); if(variable != 7);
"Note!" If you want to check an equality / inequality use "==" / "!=";
If the condition is true, whatever is between braces is gonna happen;
Connected to an "if" Statment there can also be "else if" or "else"
Examples:
if(variable == 2) { //Code }
else if(variable == 1) { //Code }
else if (variable == 0) { //Code }
else { //Code }
If the first if the condition wasn't true then it will check the other "else if".
If one of them is true the rest won't be checked by the program
And if none of the if/else if are true, the program will execute the code in the else braces.
"Note!" There can only be one "else" in an if statement and how many "else if" you want