Advertisements
Advertisements
Question
List out the various branching statements in JavaScript?
Answer in Brief
Advertisements
Solution
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
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
In which loop the condition is evaluated, before executing a statement?
Write the general syntax for switch statement.
Differentiate the break and continue statement.
What message will be displayed, if the input for age is given as 20, for the following snippet?
Explain switch case statement with example.
Rewrite the following code using the if-else statement:
int m = 400;
double cl). = (m>300) ? (m/10.0) * 2; (m/20.0) - 2;Give the output of the following program segment:
int n = 4279; int d;
while(n>0)
(d=n%10;
System.out.println(d);
n=n/100;
}Which of the following data type cannot be used with switch case construct?
Which of the following is not true with regards to a switch statement?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");