javascript 中随机数

话不多说,上代码

function rand(m,n)
	{
		return  Math.ceil(Math.random()*(n-m+1))+m-1;
	}

你可能感兴趣的:(javascript,随机数)