Forum Discussion
- Abramova
Staff
Hi,
The following C#Script function generates a random number within a given interval:
function randInt(min, max)
{
return Math["round"](Math["random"]()*(max-min)+min)
} - anatar02ContributorThanks it works.
Could you please help me to generate the unique number. - Abramova
Staff
Hi,
What do you mean by "unique number"?