InterviewSolution
Saved Bookmarks
| 1. |
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. |
|
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. |
|