Node.js的随机数生成器?
如果有人输入“!random”这样的聊天机器人需要它,它会产生1-100之间的数字。似乎找不到任何真正有用的东西。欢呼声。
client.on('chat', function(channel, user, message, self) {
if(message === "!random" && canSendMessage ) {
canSendMessage = false;
client.say("", "@" + user['display-name'] + ", ");
setTimeout(function(){ canSendMessage = true }, 2000);
答案 0 :(得分:3)
在Math.random上使用Math.floor * 100:
var p1 = Math.floor(Math.random() * 100);
console.log(p1);
答案 1 :(得分:0)
与Math.floor() & Math.random()
Math.floor()
阻止浮点。Math.random*100
转换为2位数字
console.log(Math.floor(Math.random()*100))