Switch Case

 let color = "green";

switch (color) {
  case "red":
    console.log("stop!!!");
    break;
  case "yellow":
    console.log("wait.....");
    break;
  case "green":
    console.log("gooooooo");
    break;
  default:
    console.log("Error././");
}

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code