generating random number with conditions js code example
Example: how to generate random numbers in javascript when conditions are fulfiiled
if (CONDITION) {
VARIABLENAME = Math.random*LIMIT;
}
if (CONDITION) {
VARIABLENAME = Math.random*LIMIT;
}