chore(i8n,learn): processed translations (#41364)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
camperbot
2021-03-04 19:55:32 -07:00
committed by GitHub
parent c000c7ab11
commit d58e605825
36 changed files with 275 additions and 267 deletions

View File

@ -49,7 +49,9 @@ if(typeof myName !== "undefined"){(function(v){return v;})(myName);}
```
## --seed-contents--
```js
```
# --solutions--

View File

@ -36,7 +36,9 @@ if(typeof a !== 'undefined') {(function(a){return "a = " + a;})(a);} else { (fun
```
## --seed-contents--
```js
```
# --solutions--

View File

@ -1,6 +1,6 @@
---
id: bd7993c9c69feddfaeb7bdef
title: Multiply Two Decimals with JavaScript
title: 两个小数相乘
challengeType: 1
videoUrl: 'https://scrimba.com/c/ce2GeHq'
forumTopicId: 301173
@ -9,23 +9,23 @@ dashedName: multiply-two-decimals-with-javascript
# --description--
In JavaScript, you can also perform calculations with decimal numbers, just like whole numbers.
JavaScript 中,你也可以用小数进行计算,就像整数一样。
Let's multiply two decimals together to get their product.
把两个小数相乘,并得到它们乘积。
# --instructions--
Change the `0.0` so that product will equal `5.0`.
改变 `0.0` 的数值让变量 product 的值等于 `5.0`
# --hints--
The variable `product` should equal `5.0`.
变量 `product` 应该等于 `5.0`
```js
assert(product === 5.0);
```
You should use the `*` operator
要使用`*`运算符。
```js
assert(/\*/.test(code));