61 lines
1.3 KiB
Markdown
61 lines
1.3 KiB
Markdown
---
|
||
id: bd7123c9c441eddfaeb5bdef
|
||
title: 理解布尔值
|
||
challengeType: 1
|
||
videoUrl: 'https://scrimba.com/c/c9Me8t4'
|
||
forumTopicId: 301176
|
||
dashedName: understanding-boolean-values
|
||
---
|
||
|
||
# --description--
|
||
|
||
另一种数据类型是布尔(<dfn>Boolean</dfn>)。 布尔值只能是两个值中的一个:`true` 或者 `false`。 它非常像电路开关,`true` 是 “开”,`false` 是 “关”。 这两种状态是互斥的。
|
||
|
||
**注意:** 布尔值是不带引号的。 字符串 `"true"` 和 `"false"` 不是布尔值,在 JavaScript 中也没有特殊含义。
|
||
|
||
# --instructions--
|
||
|
||
修改 `welcomeToBooleans` 函数,当 run 按钮点击时让它返回 `true` 而不是 `false`。
|
||
|
||
# --hints--
|
||
|
||
`welcomeToBooleans()` 函数应该返回一个布尔值 (`true` 或者 `false`)。
|
||
|
||
```js
|
||
assert(typeof welcomeToBooleans() === 'boolean');
|
||
```
|
||
|
||
`welcomeToBooleans()` 应该返回 `true`。
|
||
|
||
```js
|
||
assert(welcomeToBooleans() === true);
|
||
```
|
||
|
||
# --seed--
|
||
|
||
## --after-user-code--
|
||
|
||
```js
|
||
welcomeToBooleans();
|
||
```
|
||
|
||
## --seed-contents--
|
||
|
||
```js
|
||
function welcomeToBooleans() {
|
||
// Only change code below this line
|
||
|
||
return false; // Change this line
|
||
|
||
// Only change code above this line
|
||
}
|
||
```
|
||
|
||
# --solutions--
|
||
|
||
```js
|
||
function welcomeToBooleans() {
|
||
return true; // Change this line
|
||
}
|
||
```
|