Javascript

JavaScript Intro

JavaScript Intro Quiz

JavaScript Intro Exercise

JavaScript Basic

JavaScript Basic Quiz

JavaScript Basic Exercise

JavaScript Advance

JavaScript Advance Quiz

JavaScript Advance Exercise

JavaScript ES6

JavaScript ES6 Quiz

JavaScript ES6 Exercise

JavaScript Array Methods and Properties

JavaScript String Methods and Properties

JavaScript Number Methods and Properties

JavaScript Math Properties and Methods

JavaScript Date Methods and Properties

JavaScript Global Methods and Properties

JavaScript RegExp Properties and Methods

JavaScript Class Methods and Keywords

JavaScript Errors, JSON and Booleans

JavaScript Statements

JavaScript Window History Object Properties and Methods

JavaScript Window Location Object Properties and Methods

JavaScript Window Screen Object Properties

JavaScript Window Navigator Object Properties and Methods

JavaScript Window Object Properties and Methods

JavaScript Console Object Methods

JavaScript Geolocation and Storage APIs

JavaScript CSSStyleDeclaration Object Methods and Properties

HTML DOM Documents Object Properties and Methods

DOM HTMLCollection Properties and Methods

HTML DOM Attributes Properties and Methods

HTML DOM Elements Properties and Methods

HTML DOM Style Object Properties

HTML DOM AnimationEvent Properties and Methods

HTML DOM ClipboardEvent Properties and Methods

HTML DOM DragEvent Properties and Methods

HTML DOM FocusEvent Properties and Methods

HTML DOM HashChangeEvent Properties and Methods

HTML DOM InputEvent Properties and Methods

HTML DOM KeyboardEvent Properties and Methods

HTML DOM MouseEvent Properties and Methods

HTML DOM PageTransitionEvent Properties and Methods

HTML DOM ProgressEvent Properties and Methods

HTML DOM StorageEvent Properties and Methods

HTML DOM TransitionEvent Properties and Methods

HTML DOM WheelEvent Properties and Methods

HTML DOM UiEvent Properties and Methods

HTML DOM TouchEvent Properties and Methods

The Event Object Properties and Methods

JavaScript switch Statement

JavaScript switch Statement

 

 

The switch statement is used for executing a block of code depending on different cases. It is part of JavaScript Conditional Statements which perform different actions under different conditions. It comes as a replacement for multiple if...else and nested if...else loops.

 

More Explanation:-

 

In the switch statement, an expression is evaluated. It is then compared with the values of each case in the structure. If there is a match, the associated block of code is executed. It is used in combination with break and default keywords. They are optional but they are very important.

 

Break keyword:-

 

The break keyword breaks out of the switch block when a certain case match. Without it, the next code block in the switch statement is executed.

 

Default Keyword:-

 

The default keyword is used to specify some code to run if there is no case match. It is only used once in it.

 

Syntax:-

 

Its syntax is:-
switch(expression) {
  case n:
    //code block
    break;
  case n:
    // code block
    break;
  default:
    // default code block
}

 

Further Explanation:-

 

Parameter Description
expression Required. Specifies an expression to be evaluated. The expression is evaluated once and its value is matched with each case. If a match occur, then that block will be executed.

Code Explanation

All Tutorials related to JavaScript Statements

All Sections related to Javascript