--- id: bd7123c9c441eddfaeb5bdef title: Understanding Boolean Values challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(typeof welcomeToBooleans() === "boolean", "The welcomeToBooleans() function should return a boolean (true/false) value.");' - text: '' testString: 'assert(welcomeToBooleans() === true, "welcomeToBooleans() should return true.");' ```
## Challenge Seed
```js function welcomeToBooleans() { // Only change code below this line. return false; // Change this line // Only change code above this line. } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```