For getting a random number from 1 to 100 in JavaScript, use the following snippet [code]Math.floor(Math.random() * 100) + 1 [/code]In this code, ...
確定! 回上一頁