Lodash _.floor() Method

The _.floor() method is used to compute numbers rounded down to precision means it rounded down to the floor value.
Syntax:
_.floor(number, [precision = 0])
Parameters: This method accepts two parameters as mentioned above and described below:
- number: This parameter holds the number to round down.
- [precision = 0]: This parameter holds the precision to round down to.
Return Value: This method returns the rounded down number.
Example 1: Here, const _ = require(‘lodash’) is used to import the lodash library into the file.
Javascript
| // Requiring the lodash library   const _ = require("lodash");    // Use of _.floor() method  let gfg = _.floor(2.4);         // Printing the output   console.log(gfg) | 
 
Output:
2
Example 2:
Javascript
| // Requiring the lodash library   const _ = require("lodash");    // Use of _.floor() method  let gfg = _.floor(0.525, 2);         // Printing the output   console.log(gfg) | 
Output:
0.52
Example 3:
Javascript
| // Requiring the lodash library   const _ = require("lodash");    // Use of _.floor() method  let gfg = _.floor(1680, -2);         // Printing the output   console.log(gfg) | 
 
Output:
1600
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
 
				 
					


