Underscore.JS random方法

Underscore.JS random方法

语法

_.random(min, max)

random方法返回一个在min和max之间的随机数,包括这两个值。如果只传递一个数字,则生成在0和给定数字之间的随机数。看下面的示例 –

示例

var _ = require('underscore');

//Example 1: Get a random number between 3 and 10
console.log(_.random(3, 10));

//Example 2: Get a random number between 0 and 10
console.log(_.random(10));

将上面的程序保存在 tester.js 中。运行以下命令来执行该程序。

命令

>node tester.js

输出

9
5

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程