Added solution to Boo Who - Portuguese (#34564)

* Added solution to Boo Who - Portuguese

* Add invocation to solution
This commit is contained in:
Matheus Genteluci
2019-05-24 23:56:07 -03:00
committed by Randell Dawson
parent b06ce0d745
commit 4c05815c39

View File

@ -69,6 +69,10 @@ booWho(null);
<section id='solution'>
```js
// solution required
function booWho(bool) {
return typeof bool === 'boolean';
}
booWho(null);
```
</section>