📜  Lodash _.round() 方法

📅  最后修改于: 2022-05-13 01:56:41.008000             🧑  作者: Mango

Lodash _.round() 方法

Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.round()方法用于计算四舍五入到精度的数字。

句法:

_.round(number, [precision = 0])

参数:此方法接受上面提到的两个参数,如下所述:

  • number:此参数保存要舍入的数字。
  • [precision = 0]:此参数保存要四舍五入的精度。

返回值:此方法返回四舍五入的数字。

示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.round()  
// method 
let gfg = _.round(7.56); 
        
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.round()  
// method 
let gfg = _.round(9.005, 2); 
        
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.round()  
// method 
let gfg = _.round(1980, -2); 
        
// Printing the output  
console.log(gfg);


输出:

8

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.round()  
// method 
let gfg = _.round(9.005, 2); 
        
// Printing the output  
console.log(gfg);

输出:

9.01

示例 3:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.round()  
// method 
let gfg = _.round(1980, -2); 
        
// Printing the output  
console.log(gfg);

输出:

2000