Skip to content

Instantly share code, notes, and snippets.

@coltpini
Created November 17, 2022 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coltpini/83ff620a0186d17c3fdb19ecc3bac12f to your computer and use it in GitHub Desktop.
Save coltpini/83ff620a0186d17c3fdb19ecc3bac12f to your computer and use it in GitHub Desktop.
gist example for confluence
const getRandom = (max: number, zero = true) => {
const rn = Math.floor(Math.random() * max);
return zero ? rn : rn + 1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment