Skip to content

Instantly share code, notes, and snippets.

@aerrity
Created May 2, 2018 09:44
Show Gist options
  • Save aerrity/f505c58b05d0a5438eceb4f9c9d39c26 to your computer and use it in GitHub Desktop.
Save aerrity/f505c58b05d0a5438eceb4f9c9d39c26 to your computer and use it in GitHub Desktop.
Example of the module pattern
function createSecret() {
//private variable
let secretNum = Math.round(Math.random() * 10);
//public function
let guessSecret = function(guess) {
return guess === secretNum ? 'Correct' : 'Try again';
}
return guessSecret;
}
let lottery1 = createSecret();
console.log(lottery1(5));
let lottery2 = createSecret();
console.log(lottery2(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment