Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Basics (Retired) Creating Reusable Code with Functions Random Number Challenge Solution

Kjetil-Lennart A. Lorentzen
Kjetil-Lennart A. Lorentzen
13,390 Points

Struggeling with the math. Help.

I am seriously struggeling with the math, i thought i understood it when i encountered it in the course. but you know what? I don't.

This is the only thing that made this challange hard for me, i didn't know where to put the lower and upper.

Can somebody please explain the math to me like i am a 5 year old?

2 Answers

Hi Kjetil-Lennart. JavaScript Math object allows you to perform mathematical tasks on numbers. Below I have list a few examples they are many more.

`Math.random() returns a random number between 0 (inclusive), and 1 (exclusive): Math.random(); // returns a random number

Math.round() Math.round(x) returns the value of x rounded to its nearest integer: Example Math.round(4.7); // returns 5 Math.round(4.4); // returns 4

Math.ceil() Math.ceil(x) returns the value of x rounded up to its nearest integer: Example Math.ceil(4.4); // returns 5

Math.floor() Math.floor(x) returns the value of x rounded down to its nearest integer: Example Math.floor(4.7); // returns 4

Kjetil-Lennart A. Lorentzen
Kjetil-Lennart A. Lorentzen
13,390 Points

Thank you very much for your answer, these i knew, but! But i don't get the actual math there, i know it had something to do with finding the range between the number and such, but i can't get my head around how it works. You are very kind to take the time to answer