akochemasov/project-lvl1-s132

View on GitHub
src/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
export const getRndInteger = max => Math.floor(Math.random() * max);

export const getRndIntegerInRange = (min, max) =>
  Math.floor(Math.random() * ((max - min) + 1)) + min;