Skip to content

Instantly share code, notes, and snippets.

@ericcchiu
Created February 13, 2022 19:03
Show Gist options
  • Save ericcchiu/1c933c0e4fb7add9e1b2f7f601bb0703 to your computer and use it in GitHub Desktop.
Save ericcchiu/1c933c0e4fb7add9e1b2f7f601bb0703 to your computer and use it in GitHub Desktop.
let lightColor = 'Green';
switch (lightColor) {
case 'Red':
console.log('Stop');
break;
case 'Yellow':
console.log('Slow');
break;
case 'Green':
console.log('Go');
break;
default:
console.log('All way stop');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment