Conditionals - Creating a Test

What are some things in our lives that can be either true or false?

Ex: If I the weather is nice I will go outside

if(niceWeather) {
    console.log("go outside")
}
Conditionals - Creating a Test What are some things in our lives that can be either true or false? Ex: If I the weather is nice I will go outside if(niceWeather) { console.log("go outside") }