math.floor in js code example

Example 1: math.floor js

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

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

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

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

Example 2: array.unshift in javascript

//The unshift() method adds one or more elements to the beginning of an array 
//and returns the new length of the array.

const array1 = [1, 2, 3];
console.log(array1.unshift(4, 5));
// expected output: 5
console.log(array1);
// expected output: Array [4, 5, 1, 2, 3]

Example 3: math.round in javascript

let xo =7.45;
xo = Math.round(xo);
// output = 7;

Example 4: javascript floor

Math.floor(1.6);

result: 1

Example 5: math.floor

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

Example 6: 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