freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../basic-javascript/understanding-boolean-value...

957 B

id title challengeType videoUrl localeTitle
bd7123c9c441eddfaeb5bdef Understanding Boolean Values 1

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert(typeof welcomeToBooleans() === "boolean", "The <code>welcomeToBooleans()</code> function should return a boolean &#40;true/false&#41; value.");'
  - text: ''
    testString: 'assert(welcomeToBooleans() === true, "<code>welcomeToBooleans()</code> should return true.");'

Challenge Seed

function welcomeToBooleans() {

// Only change code below this line.

return false; // Change this line

// Only change code above this line.
}

After Test

console.info('after the test');

Solution

// solution required