2020-10-06 23:10:08 +05:30

75 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bd7123c9c441eddfaeb5bdef
challengeType: 1
videoUrl: 'https://scrimba.com/c/c9Me8t4'
forumTopicId: 301176
title: 理解布尔值
---
## Description
<section id='description'>
另一种数据类型是<dfn>布尔</dfn>Boolean<code>布尔</code>值要么是<code>true</code>要么是<code>false</code>。它非常像电路开关,<code>true</code>是 “开”,<code>false</code>是 “关”。这两种状态是互斥的。
<strong>注意</strong><br><code>布尔值</code>是不带引号的,<code>"true"</code><code>"false"</code><code>字符串</code>而不是<code>布尔值</code>,在 JavaScript 中也没有特殊含义。
</section>
## Instructions
<section id='instructions'>
修改<code>welcomeToBooleans</code>函数,让它返回<code>true</code>而不是<code>false</code>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>welcomeToBooleans()</code>函数应该返回一个布尔值 &#40;true/false&#41;。
testString: assert(typeof welcomeToBooleans() === 'boolean');
- text: <code>welcomeToBooleans()</code>应该返回 true。
testString: assert(welcomeToBooleans() === true);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function welcomeToBooleans() {
// Only change code below this line.
return false; // Change this line
// Only change code above this line.
}
```
</div>
### After Test
<div id='js-teardown'>
```js
welcomeToBooleans();
```
</div>
</section>
## Solution
<section id='solution'>
```js
function welcomeToBooleans() {
return true; // Change this line
}
```
</section>