UNPKG

@revelmind/snippet

Version:

A library of free to use code snippets

5 lines (4 loc) 127 B
function randomNumber(max) { return Math.floor(Math.random() * Math.floor(max)) + 1; } console.log(randomNumber(100));