freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-an.../basic-javascript/create-decimal-numbers-with...

1.1 KiB

id title challengeType videoUrl forumTopicId dashedName
cf1391c1c11feddfaeb4bdef 创建一个小数 1 https://scrimba.com/c/ca8GEuW 16826 create-decimal-numbers-with-javascript

--description--

我们也可以把小数存储到变量中。 小数有时候也被称作浮点数或者 floats

**提示:**不是所有的实数都可以用浮点数(floating point)来表示。 因为可能产生四舍五入的错误, 查看详情

--instructions--

创建一个变量 myDecimal,并给它赋值一个浮点数(例如 5.7)。

--hints--

myDecimal 应该是一个数字。

assert(typeof myDecimal === 'number');

myDecimal 应该包含小数点。

assert(myDecimal % 1 != 0);

--seed--

--after-user-code--

(function(){if(typeof myDecimal !== "undefined"){return myDecimal;}})();

--seed-contents--

var ourDecimal = 5.7;

// Only change code below this line

--solutions--

var myDecimal = 9.9;