random number between 1-3. js code example
Example 1: javascript random number between
Math.floor(Math.random() * 6) + 1
Example 2: javascript random number between 0 and 10
Math.floor(Math.random() * 10);
Math.floor(Math.random() * 6) + 1
Math.floor(Math.random() * 10);