Lodash _.subtract() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_ .subtract()方法用于减去两个数字。
句法:
_.subtract(minuend, subtrahend)
参数:此方法接受上面提到的两个参数,如下所述:
- minuend:此参数保存减法中的第一个数字。
- subtrahend:此参数保存减法中的第二个数字。
返回值:此方法返回两个数字之间的差。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.subtract() method
let gfg = _.subtract(50, 18);
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.subtract() method
let gfg = _.subtract(87, -98);
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.subtract() method
let gfg = _.subtract(-126, -53);
// Printing the output
console.log(gfg);
输出:
32
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.subtract() method
let gfg = _.subtract(87, -98);
// Printing the output
console.log(gfg);
输出:
185
示例 3:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.subtract() method
let gfg = _.subtract(-126, -53);
// Printing the output
console.log(gfg);
输出:
-73