Tell us what’s happening:
When the strings have quotes, are they disqualified from being able to be used in the function or does it pop up in the console?
**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/94.0.4606.61 Safari/537.36 Edg/94.0.992.31
A boolean is a type that can only have one of two values: true or false.
A string is a type that is an ordered sequence of characters. The word “true” is a string, and so is “adammarentis” and “This is a string!”.