| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× 2× 4× | module.exports = {
random: function() {
return Math.random();
},
randomElement: function(arr) {
return arr[Math.floor(Math.random() * arr.length)];
},
factorial: function(n) {
return n * (n-1);
}
};
|