JavaScript supports conditional statements like if, if/else, and if/else if statements to perform different actions based on different conditions. The if statement executes code if a condition is true, the if/else statement executes one block of code if the condition is true and another block if false, and the if/else if statement checks multiple conditions in sequence.