Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

This is not the question I asked. I'm talking about the last module in the js-course called Javascript Advance or Lesson 7 in Level 11. I already mentioned the code for it. it's about cookies, I hope now you will able to help me out.
2 years ago
Hello, Use the below code I hope it will work.



let signal = "yellow";
// write logic here

if(signal == "green") {
console.log("Go");
}
else if(signal == "yellow") {
console.log("Wait");
}
else if(signal == "red") {
console.log("Stop");
}
else {
console.log("Error");
}
2 years ago