随机获取1到100的10个数

function getRandom(start, end) {
        var num = end - start + 1;
        return Math.floor(Math.random() * num );
    }
    var arr = [];
    for (var i = 0; i < 10; i++) {
        arr.push(getRandom(1, 100));
    }
    arr.sort(function (a, b) {
        return (a - b);
    });
    console.log(arr);

你可能感兴趣的:(排序)