summaryrefslogtreecommitdiff
path: root/src/utils/getRandomInt.js
blob: 900e55f8c1fb9512cb73ced502e1f1d5cef7713a (plain)
1
2
3
export const getRandomInt = (max) => {
  return Math.floor(Math.random() * max);
}