Decimal number?

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


var ourDecimal = 5.7;

// Only change code below this line

var ourDecimal;
ourDecimal = 2.4;  tried many number combos and extensions all the way out to 10x, i,e,  0.024, .0240000000, 2.40000000, etc.  ...tried same with other numbers but all i get is the below message????

myDecimal should be a number.
myDecimal should have a decimal point

i have read thru this question +20x trying to follow the instructions and the example but none of the many ways i have tried work...it seems that i  just do not understand what I am being ask for and the answers being given here so far do not work when running the test.  

help would be appreciated but if like so many here, you are just going to respond to be a dick, don't bother.






**Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36</code>

**Challenge:**  Create Decimal Numbers with JavaScript

**Link to the challenge:**
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/create-decimal-numbers-with-javascript

Create a variable myDecimal and give it a decimal value with a fractional part

I don’t see a variable with the requested name in your code

thanks for your help, i found my problem… was using “ourDecimal” as showing in the example instead of “myDecimal”… when i corrected the variable spelling error, all worked fine.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.