mathf.floor code example

Example 1: math.floor

console.log(Math.floor(5.95));
// expected output: 5

console.log(Math.floor(5.05));
// expected output: 5

Example 2: math.floor

console.log(Math.floor(5.05));
// expected output: 5

Example 3: math.floor + roandom

//Write the following code to get a random number between 1 and 10
       const result = Math.floor(Math.random()*(10)+ 1);

Example 4: math ceil floor

//round up to the next highest value
Math.ceil(11.49); //12 

//the greatest integer that is less than or equal to x
Math.floor(11.49); //11

Tags:

Cpp Example