VladimirChudovskiy/frontend-project-lvl1

View on GitHub
src/utils.js

Summary

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

export default generateRandom;