redux-app-examples
Version:
Examples of redux-app with Angular and React.
8 lines (7 loc) • 342 B
text/typescript
export function modulo(num: number, base: number): number {
// https://stackoverflow.com/questions/4467539/javascript-modulo-gives-a-negative-result-for-negative-numbers
return ((num % base) + base) % base;
}
export function randomInt(min: number, max: number) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}