📜  Lodash _.add() 方法

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

Lodash _.add() 方法

_ .add()方法用于添加两个数字。

句法:

_.add(augend, addend)

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

  • augend:此参数保存第一个数字。
  • addend:此参数保存第二个数字。

返回值:该方法返回两个数字相加的结果。

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

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


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


输出:

50

示例 2:

Javascript

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

输出:

971