FreeCodeCamp筆記之:Boo who

作者: delphuy | 来源:发表于2017-10-11 16:24 被阅读13次

    题目

    检查一个值是否是基本布尔类型,并返回 true 或 false。基本布尔类型即 true 和 false。如果你被卡住了,记得开大招 Read-Search-Ask。尝试与他人结伴编程、编写你自己的代码。
    这是一些对你有帮助的资源:
    Boolean Objects

    function boo(bool) {
      // What is the new fad diet for ghost developers? The Boolean.
    
    }
    boo(null)
    

    思路

    1. 检查一个值是否基本布尔类型,意思应该就是 返回这个值的数据类型,看是否和基本布尔类型相等;

    2. 该死的提示 Boolean Objects,看了半天没什么鸟用;

    3. 于是百度了一下 返回数据类型,是需要用这个 typeof operand

    4. 找到布尔类型的写法是这样

      1.png
    5. 常规用法都有了:


      image.png
    6. 所以判断 bool 这个是否是基本布尔类型就很简单了;

    解答

    function boo(bool) {
      // What is the new fad diet for ghost developers? The Boolean.
       return typeof bool === "boolean";
    }
    boo(null);
    

    相关文章

      网友评论

        本文标题:FreeCodeCamp筆記之:Boo who

        本文链接:https://www.haomeiwen.com/subject/cymwyxtx.html