_.mod() 函数返回给定除数除以给定除数的余数。
用法:
_.mod( dividend, divisor );
参数:
- dividend:给定股息,从中计算 mod。
- divisor:给定除数,用于计算模数。
返回值:此方法从给定参数返回计算出的模量。
注意:由于它需要安装underscore.js contrib库,因此在正常的JavaScript中将无法使用。
可以使用npm install underscore-contrib -save安装underscore.js contrib库。
范例1:
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var mod = _.mod( 24, 5 );
console.log("The Modulus is:", mod);
输出:
The Modulus is:4
范例2:
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var mod = _.mod( 120, 25 );
console.log("The Modulus is:", mod);
输出:
The Modulus is:20
范例3:
// Defining underscore contrib variable
var _ = require('underscore-contrib');
var mod = _.mod( 12, 1 );
console.log("The Modulus is:", mod);
输出:
The Modulus is:0
相关用法
- Tensorflow.js tf.mod()用法及代码示例
- Lodash _.mod()用法及代码示例
- Mongoose Query.prototype.mod()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Underscore.js _.mod() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。