--- id: bd7993c9ca9feddfaeb7bdef title: 兩個小數相除 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)); ``` quotient 變量應該只被賦值一次。 ```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; ```