Advertisements
Advertisements
प्रश्न
List out the various branching statements in JavaScript?
संक्षेप में उत्तर
उत्तर
There are different branching statements. They are:
- if statement
- if… else statement
- else if statement
- switch statement
shaalaa.com
Introduction of Conditional Statements in Java
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
Which statement in switch case is used to exit the statement once the appropriate choice is found?
Which of the following is not a branching 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>”);
}
In which loop the condition is evaluated, before executing a statement?
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.
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");