Skip to content

Instantly share code, notes, and snippets.

@humayunahmed8
Created June 28, 2018 10:32
Show Gist options
  • Save humayunahmed8/d77103ae8683992b0b1821fa87769a0a to your computer and use it in GitHub Desktop.
Save humayunahmed8/d77103ae8683992b0b1821fa87769a0a to your computer and use it in GitHub Desktop.
Javascript Switch
// Switch Statement
var x = 100;
switch (x) {
case 5:
document.write('Hello Bangladesh');
break;
case 10:
document.write('Hello RRF');
break;
case 25:
document.write('Hello Basis');
break;
case 100:
document.write('Hello A2i');
break;
default:
document.write('Opps!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment