Assignment-Traffic signal

 


let color="yellow";
if(color==="red"){
    console.log("stop!!!");
}
if(color==="yellow"){
    console.log("wait....");
}
if(color==="green"){
    console.log("goooooooo");
}

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code