Whats the difference between Math.ceil and Math.floor

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

```

console.log(Math.ceil(Math.random() * 100));

and console.log(Math.floor(Math.random() * 100));

<do not remove the three backticks above>

Math.ceil takes a float/decimal and rounds up, Math.floor takes a float and rounds down.
For example,

Math.ceil(4.4); //returns 5.0
Math.ceil(4.4); //returns 4.0

hope this helped, :slight_smile:

1 Like

@kyleaw thanks for your help

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