vaziliybober/brain-games

View on GitHub
src/util.js

Summary

Maintainability
A
0 mins
Test Coverage
export const genRandInt = (from, to) => from + Math.floor(Math.random() * (to - from));

export const chooseRandElem = (array) => array[genRandInt(0, array.length)];