1. if / else if / else Statements - The most straightforward way to apply conditional logic.2. Ternary Operator - A concise alternative to if…else, useful in React components.3. Logical AND Operator - Renders or runs something only if a condition is true.4. switch statement - Provides a cleaner alternative to multiple if…else blocks.