题目
检查一个值是否是基本布尔类型,并返回 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)
思路
-
检查一个值是否基本布尔类型,意思应该就是 返回这个值的数据类型,看是否和基本布尔类型相等;
-
该死的提示 Boolean Objects,看了半天没什么鸟用;
-
于是百度了一下 返回数据类型,是需要用这个 typeof operand;
-
找到布尔类型的写法是这样
1.png
-
常规用法都有了:
image.png -
所以判断 bool 这个是否是基本布尔类型就很简单了;
解答
function boo(bool) {
// What is the new fad diet for ghost developers? The Boolean.
return typeof bool === "boolean";
}
boo(null);
网友评论