anka1928/project-lvl1-s284

View on GitHub
src/utils.js

Summary

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