Skip to content

Instantly share code, notes, and snippets.

@orjahren
Created August 30, 2018 09:51
Show Gist options
  • Save orjahren/63af0cf4a83d57c8b53ea8cdf541137a to your computer and use it in GitHub Desktop.
Save orjahren/63af0cf4a83d57c8b53ea8cdf541137a to your computer and use it in GitHub Desktop.
This will give you a random char using JavaScript :-)
getRandomChar = () => {
return String.fromCharCode(Math.round(Math.random()*(90-65)+65));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment