Skip to content

Instantly share code, notes, and snippets.

@osedoe
Last active November 14, 2019 15:32
Show Gist options
  • Save osedoe/e96e179d776aec2c96ca29f974beca3b to your computer and use it in GitHub Desktop.
Save osedoe/e96e179d776aec2c96ca29f974beca3b to your computer and use it in GitHub Desktop.
Useful typescript functions
const getRandomObjectProperty = (object: object) => Object.keys(object)[Math.floor(Math.random() * Object.keys(object).length)];
const generateRandomHexColor = () => '#'+Math.floor(Math.random()*16777215).toString(16);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment