theroadislong/project-lvl1-s412

View on GitHub
src/utils.js

Summary

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

export default getRandomNumber;