Generate Random Fractions with JavaScript
Summary
- The
Math.random()
function generates a random decimal number from 0 to 0.999999….
Final Code
function randomFraction() {
// Only change code below this line
return Math.random();
// Only change code above this line
}