📜  Lodash _.divide() 方法

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

Lodash _.divide() 方法

_.divide()方法用于将两个数字相除。

句法:

_.divide(dividend, divisor)

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

  • 被除数:此参数保存除法中的第一个数字。
  • 除数:此参数保存除法中的第二个数字。

返回值:该方法返回两个数相除后的商。

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

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


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


输出:

377

示例 2:

Javascript

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

输出:

2.4