Skip to content

Instantly share code, notes, and snippets.

@garganurag893
Created November 16, 2019 17:34
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 garganurag893/14c375ef5406e6b59b36bb1796d5cdeb to your computer and use it in GitHub Desktop.
Save garganurag893/14c375ef5406e6b59b36bb1796d5cdeb to your computer and use it in GitHub Desktop.
export const getRandom = (min, max) => {
return Math.floor(Math.random() * (max - min + 1) + min);
};
export const topObstacleHeight = getRandom(150, 300);
export const bottomObstacleHeight = getRandom(200, 300);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment