function getRandomInt()

in functions/stock-seller/app.js [8:10]


function getRandomInt(max) {
    return Math.floor(Math.random() * Math.floor(max)) + 1;
}