Noiserv 0 Posted April 2 Report Share Posted April 2 Hey guys! I'm struggling to get the correct code on this following example: var weather = "sunny" ; var IamHappy = true; I'm trying to create a code with the if statement that will evaluate the condition if the weather is sunny and I'm feeling happy. If so, it should print on the code block " Lets run". what I have tried is this : if ( weather & IamHappy == "sunny" ) { console.log("Lets run"); } I'm still learning the basics of coding, but any help would much appreciated. Quote Link to post Share on other sites
Ingolme 1,035 Posted April 2 Report Share Posted April 2 Two problems I notice: The operator should be "&&" The value you want to compare with "sunny" is weather, not IamHappy. To fix it, the line should look like this: if(IamHappy && weather == "sunny") { By the way, this is Javascript, not Java. They're two different languages. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.