如何用js随机返回一个数组的元素
var?答?=?;
功能?发送号码(arr)
{
回归?arr[math . floor(math . random()* arr . length)];
}
send num(a);
这样就可以实现每次返回都是随机数组中的一个数。主要使用random的方法。随机方法返回(0,1)?,但得不到1,所以用Math.floor向下舍入。
功能?发送号码(arr)
{
回归?arr[math . floor(math . random()* arr . length)];
}
send num(a);
这样就可以实现每次返回都是随机数组中的一个数。主要使用random的方法。随机方法返回(0,1)?,但得不到1,所以用Math.floor向下舍入。