? js if code example
Example 1: js if else
If - Else Statements
if (condition) {
// what to do if condition is met
} else {
// what to do if condition is not met
}
Example 2: javascript if
if (32 == 32) {
console.log('32 is equil to 32!');
}
If - Else Statements
if (condition) {
// what to do if condition is met
} else {
// what to do if condition is not met
}
if (32 == 32) {
console.log('32 is equil to 32!');
}