Computer Science, asked by Muskaan7504, 9 months ago

When test expression of if statement is evaluated to false, the statements inside body of if are skipped.State whether it is true or false.

Answers

Answered by MrZeref
1

Answer:

The if/else statement executes a block of code if a specified condition is true. If the condition is false, another block of code can be executed. The if/else statement is a part of JavaScript's "Conditional" Statements, which are used to perform different actions based on different conditions.

Similar questions