scrimba
Generate Random Fractions
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Generate Random Fractions
AboutCommentsNotes
Generate Random Fractions
Expand for more info
index.js
run
preview
console
function randomFraction(){


return Math.random();
}

console.log(randomFraction());
Console
0.19590375927801662
,
index.html
LIVE