Lodash _.div()方法执行除法运算并返回所有给定参数的商。
用法:
_.div( val1, val2,..., valn )
参数:此方法采用n个值,并对它们进行_.div()方法操作。
返回值:此方法返回所有给定参数的商。
注意:由于它需要安装lodash.js contrib库,因此在常规JavaScript中将无法使用。可以使用npm install lodash-contrib -save安装Lodash.js contrib库。
范例1:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
var divVal = _.div( 8, 2, 1 );
console.log("The Quotient of given values is:", divVal);
输出:
The Quotient of given values is:4
范例2:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
var divVal = _.div( 16, 2, 4, 1 );
console.log("The Quotient of given values is:", divVal);
输出:
The Quotient of given values is:2
范例3:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
var divVal = _.div( 1, 2, 4, 1 );
console.log("The Quotient of given values is:", divVal);
输出:
The Quotient of given values is:0.125
相关用法
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Lodash _.div() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。