Link Search Menu Expand Document

Understanding Boolean Values

Summary

  • Booleans may only be one of two values: true or false.

Final Code

function welcomeToBooleans() {

  // Only change code below this line

  return true; // Change this line

  // Only change code above this line
}