Which React syntax is used to conditionally render elements based on multiple conditions?
{
condition1 ? <First /> : condition2 ? <Second /> : <Third />
}
Switch case rendering
Ternary operator
&& operator
if statement
This question is part of this quiz :
Conditional Rendering In React