---
id: a77dbc43c33f39daa4429b4f
title: Boo who
isRequired: true
challengeType: 5
isHidden: false
forumTopicId: 16000
---

## Description
<section id='description'>
Check if a value is classified as a boolean primitive. Return true or false.
Boolean primitives are true and false.
</section>

## Instructions
<section id='instructions'>

</section>

## Tests
<section id='tests'>

```yml
tests:
  - text: <code>booWho(true)</code> should return true.
    testString: assert.strictEqual(booWho(true), true);
  - text: <code>booWho(false)</code> should return true.
    testString: assert.strictEqual(booWho(false), true);
  - text: <code>booWho([1, 2, 3])</code> should return false.
    testString: assert.strictEqual(booWho([1, 2, 3]), false);
  - text: <code>booWho([].slice)</code> should return false.
    testString: assert.strictEqual(booWho([].slice), false);
  - text: '<code>booWho({ "a": 1 })</code> should return false.'
    testString: 'assert.strictEqual(booWho({ "a": 1 }), false);'
  - text: <code>booWho(1)</code> should return false.
    testString: assert.strictEqual(booWho(1), false);
  - text: <code>booWho(NaN)</code> should return false.
    testString: assert.strictEqual(booWho(NaN), false);
  - text: <code>booWho("a")</code> should return false.
    testString: assert.strictEqual(booWho("a"), false);
  - text: <code>booWho("true")</code> should return false.
    testString: assert.strictEqual(booWho("true"), false);
  - text: <code>booWho("false")</code> should return false.
    testString: assert.strictEqual(booWho("false"), false);

```

</section>

## Challenge Seed
<section id='challengeSeed'>

<div id='js-seed'>

```js
function booWho(bool) {
  return bool;
}

booWho(null);
```

</div>



</section>

## Solution
<section id='solution'>


```js
function booWho(bool) {
  return typeof bool === "boolean";
}

booWho(null);
```

</section>