Signup/Sign In

Answers

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

if(weather == "rainy"){
{
if(myvehicle == "car")
{
console.log("I go to the office");
}
else if(myvehicle == "bike")
{
console.log("I Work from home");
}

}
}
else if(weather !== "rainy")
{
console.log("I go to the office");
}
2 years ago
if(weather == "rainy"){
{
if(myvehicle == "car")
{
console.log("I go to the office");
}
else if(myvehicle == "bike")
{
console.log("I Work from home");
}

}
}
else if(weather !== "rainy")
{
console.log("I go to the office");
}
2 years ago