From 55a6ec68d3dc500ca90d22915c1b8de61e422b60 Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Tue, 19 Jan 2016 21:15:28 -0800 Subject: [PATCH] Be more specific on what decimal number is needed --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index ea8b5f19f3..321866fdc5 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -413,7 +413,7 @@ "We can store decimal numbers in variables too. Decimal numbers are sometimes referred to as floating point numbers or floats.", "Note
Not all real numbers can accurately be represented in floating point. This can lead to rounding errors. Details Here.", "

Instructions

", - "Create a variable myDecimal and give it a decimal value." + "Create a variable myDecimal and give it a decimal value with a fractional part (e.g. 5.7)." ], "challengeSeed": [ "var ourDecimal = 5.7;",