Math JavaScript Tutorial

< html>

Example



function selectFrom(startValue, endValue) {
    var iChoices = endValue - startValue + 1;
    return Math.floor(Math.random() * iChoices + startValue);
}
var iNum = selectFrom(2, 10);
alert(iNum);