AS _random() question
AS _random() question
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- ********0
Math.randInt = function (begin, end){
return begin + Math.round(Math.random()*(end-be...
}do
var randNum = Math.random(10,50)
will give you a number between 10 and 50