Understanding Boolean Values

Tell us what’s happening:

Your code so far


function welcomeToBooleans() {

// Only change code below this line.
if ((button))
return false; // Change this line

// Only change code above this line.
}

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) coc_coc_browser/61.4.120 Chrome/55.4.2883.120 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/understanding-boolean-values

var Car = function() {
this.wheels = 4;
this.engines = 1;
this.seats = 5;
};

// Only change code below this line.

var myCar = new Car();
myCar.wheels =4;
myCar.engines = 1;
myCar.seats = 5;
myCar.nickname=“Birdies”;