iliasov-artem/project-lvl1-s388

View on GitHub
src/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
const getRandomNum = (min = 1, max = 100) => {
  const num = Math.floor(min + Math.random() * (max + 1 - min));
  return num;
};

export default getRandomNum;