57 lines
1.1 KiB
Markdown
57 lines
1.1 KiB
Markdown
![]() |
---
|
|||
|
id: bd7993c9ca9feddfaeb7bdef
|
|||
|
title: Ділення одного десяткового на інше у JavaScript
|
|||
|
challengeType: 1
|
|||
|
videoUrl: 'https://scrimba.com/c/cBZe9AW'
|
|||
|
forumTopicId: 18255
|
|||
|
dashedName: divide-one-decimal-by-another-with-javascript
|
|||
|
---
|
|||
|
|
|||
|
# --description--
|
|||
|
|
|||
|
Тепер давайте поділимо одне десяткове число на інше.
|
|||
|
|
|||
|
# --instructions--
|
|||
|
|
|||
|
Змініть `0.0` таким чином, щоб `quotient` дорівнювало `2.2`.
|
|||
|
|
|||
|
# --hints--
|
|||
|
|
|||
|
Змінна `quotient` повинна дорівнювати `2.2`
|
|||
|
|
|||
|
```js
|
|||
|
assert(quotient === 2.2);
|
|||
|
```
|
|||
|
|
|||
|
Вам слід використовувати оператор `/`, щоб поділити 4.4 на 2
|
|||
|
|
|||
|
```js
|
|||
|
assert(/4\.40*\s*\/\s*2\.*0*/.test(code));
|
|||
|
```
|
|||
|
|
|||
|
Коефіцієнтна змінна повинна бути визначена лише раз
|
|||
|
|
|||
|
```js
|
|||
|
assert(code.match(/quotient/g).length === 1);
|
|||
|
```
|
|||
|
|
|||
|
# --seed--
|
|||
|
|
|||
|
## --after-user-code--
|
|||
|
|
|||
|
```js
|
|||
|
(function(y){return 'quotient = '+y;})(quotient);
|
|||
|
```
|
|||
|
|
|||
|
## --seed-contents--
|
|||
|
|
|||
|
```js
|
|||
|
const quotient = 0.0 / 2.0; // Change this line
|
|||
|
```
|
|||
|
|
|||
|
# --solutions--
|
|||
|
|
|||
|
```js
|
|||
|
const quotient = 4.4 / 2.0;
|
|||
|
```
|