I would suggest adding a couple of console.logs so you can see what’s happening
Also, since this is a working solution, I am going to wrap it in spoiler tags
function booWho(bool) {
console.log(!bool) // null value returns true
console.log(!!bool) // null value returns false
return bool === !!bool ? true : false;
}
booWho(null);