Skip to content

Instantly share code, notes, and snippets.

@kumarsonsoff3
Created July 18, 2023 05:04
Show Gist options
  • Save kumarsonsoff3/b3412ed5b0957a82d8ae9fefca207259 to your computer and use it in GitHub Desktop.
Save kumarsonsoff3/b3412ed5b0957a82d8ae9fefca207259 to your computer and use it in GitHub Desktop.
const randomInt = (min, max) => Math.floor(Math.random() * (max - min) + min);
const randomColor = () =>
`rgb(${randomInt(0, 255)}, ${randomInt(0, 255)}, ${randomInt(0, 255)})`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment