fix(i18n): chinese - minor language fixes and add solution (#36867)

Co-authored-by: mrugesh <1884376+raisedadead@users.noreply.github.com>
This commit is contained in:
RichardLimSpring
2019-12-20 23:20:46 +08:00
committed by mrugesh
parent a8a7eeb10d
commit f68e7bd5cd

View File

@ -8,7 +8,7 @@ localeTitle: 嘘谁
---
## Description
<section id="description">检查是否归类为布尔基元。返回true或false。布尔基元是true和false。如果卡住请记得使用<a href="https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514" target="_blank">Read-Search-Ask</a> 。尝试配对程序。编写自己的代码。 </section>
<section id="description">检查参数是否归类为布尔基元。返回true或false。布尔基元是true和false。如果卡住请记得使用<a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Read-Search-Ask</a> 。尝试配对程序。编写自己的代码。 </section>
## Instructions
<section id="instructions">
@ -69,6 +69,10 @@ booWho(null);
<section id='solution'>
```js
// solution required
function booWho(bool) {
return typeof bool === "boolean";
}
booWho(null);
```
</section>