Advertisements
Advertisements
प्रश्न
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
विकल्प
6
9
63
Error
MCQ
Advertisements
उत्तर
63
shaalaa.com
Introduction of Conditional Statements in Java
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
_______ statement can be used as alterative to if-else statement.
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>”);
}What are the different types of control statement used in JavaScript?
What is meant by conditional statements in JavaScript?
List out the various branching statements in JavaScript?
Write the general syntax for switch statement.
Write the syntax for else-if statement.
The absence of which statement leads to fall through situation in switch case statement?
