Skip to content

Instantly share code, notes, and snippets.

@Nateowami
Created June 15, 2015 06:08
Show Gist options
  • Save Nateowami/f7de43dd20fd35207677 to your computer and use it in GitHub Desktop.
Save Nateowami/f7de43dd20fd35207677 to your computer and use it in GitHub Desktop.
PIN Generator
// Released into the public domain
// Set this to the number of digits you want in your PIN
var pinDigits = 4;
var pin = "";
function random(){
return Math.floor(Math.random()*10);
}
for (var i = 0; i < pinDigits; i++){
pin += random();
}
alert(pin);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment