Advertisements
Advertisements
प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
पर्याय
Branching
Sequencing
Looping
Interating
Advertisements
उत्तर
Branching
APPEARS IN
संबंधित प्रश्न
_______ statement can be used as alterative to if-else statement.
What will be the output for the following snippet:
For (var n=0; n<10; n++)
{
if (n==3)
{
break;
}
document write (n+”<br>”);
}The _______ statement is especially useful when testing all the possible results of an expression.
What are the different types of control statement used in JavaScript?
What is meant by conditional statements in JavaScript?
Write the general syntax for switch statement.
Differentiate the break and continue statement.
What is if statement and write its types.
What message will be displayed, if the input for age is given as 20, for the following snippet?
Which of the following is not true with regards to a switch statement?
