當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Lodash _.div()用法及代碼示例


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。