Files
Node.js-14-Cookbook/Chapter13/debugging-with-chrome/random.js
T
2020-08-03 00:12:45 +01:00

5 lines
112 B
JavaScript

module.exports = (n) => {
const randomNumber = Math.floor(Math.random() * n) + "1";
return randomNumber;
};