📜  Lodash _.multiply() 方法

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

Lodash _.multiply() 方法

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

_.multiply() 方法用于将参数中的两个给定数字相乘并返回结果。

句法:

_.multiply( multiplier, multiplicand )

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

  • multiplier:此参数保存乘法中的第一个数字。
  • multiplicand:此参数保存乘法中的第二个数字。

返回值:此方法返回两个数字的乘积。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.multiply()  
// method 
let ans = _.multiply(15, 8); 
        
// Printing the output  
console.log(ans);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.multiply()  
// method 
let ans = _.multiply(23, -9); 
        
// Printing the output  
console.log(ans);


输出:

120

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.multiply()  
// method 
let ans = _.multiply(23, -9); 
        
// Printing the output  
console.log(ans);

输出:

-207