Skip to content

Instantly share code, notes, and snippets.

@hristiank
Created May 3, 2017 06:19
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 hristiank/36e98366fa06285a79b656ce6b351f5e to your computer and use it in GitHub Desktop.
Save hristiank/36e98366fa06285a79b656ce6b351f5e to your computer and use it in GitHub Desktop.
Insert a random number
<script>
var randomNum = '';
randomNum += Math.round(Math.random() * (100000 - 10000) + 10000);
var elem = document.getElementById("random_number").value = randomNum;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment