JavaScript Tutorial - If-Else Statements
๐ค If-Else - Decision Making
๐ Daily Life Decisions:
โ Agar baarish ho โ Chhatri le jao
๐ Warna โ Chhatri ki zarurat nahi
๐ Agar marks >= 40 โ Pass
โ Warna โ Fail
If-Else = Computer ko decisions sikhana!
๐ Syntax Patterns
1. Simple If
if (condition) {
// True ho toh ye karo
}
2. If-Else
if (condition) {
// True
} else {
// False
}
3. If-Else If-Else
if (condition1) {
// Option 1
} else if (condition2) {
// Option 2
} else {
// Default
}
Example
if (age >= 18) {
console.log("Adult");
} else {
console.log("Minor");
}