正文开始
function selectfrom (lowValue,highValue){ var choice=highValue-lowValue+1; return Math.floor(Math.random()*choice+lowValue); } for(var i=0; i< 1000; i++) { var s = selectfrom(1,100); console.log(s); }
正文结束