--Understanding Boolean Values

Tell us what’s happening:

i am not understanding what should i do in this.

Your code so far


function welcomeToBooleans() {

// Only change code below this line.  
return false; // Change this line

// Only change code above this line.
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values

Instead of returning false, you need to return true.

Hello!

Change “false” to “true” and the function will return as true :slight_smile: