Answers for "floor in maths"

4

ceil and floor

Examples of Floor:
=====================
Input : 2.5
Output : 2

Input : -2.1
Output : -3

Input : 2.9
Output : 2

===============================

Examples of Ceil:
=====================
Input : 2.5
Output : 3

Input : -2.1
Output : -2

Input : 2.9
Output : 3
Posted by: Guest on November-18-2020
2

javascript floor

Math.floor(1.6);

result: 1
Posted by: Guest on November-12-2020
3

math floor javascript

// positive
console.log(Math.floor(7.25));   // 7
console.log(Math.floor(0.99));   // 0

// negative
console.log(Math.floor(-2.1));   // -3
console.log(Math.floor(-9.5));   // -10

// objects, strings, functions
console.log(Math.floor("hello"));                     // NaN
console.log(Math.floor({name: 'John', age: '25'}));   // NaN
console.log(Math.floor(console.log));                 // NaN
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language