Skip to content

Instantly share code, notes, and snippets.

@h3xxx
Last active January 13, 2016 10:34
Show Gist options
  • Save h3xxx/978ddbf911d804bf1707 to your computer and use it in GitHub Desktop.
Save h3xxx/978ddbf911d804bf1707 to your computer and use it in GitHub Desktop.
Private and public functions in JS.
// taken from http://stackoverflow.com/questions/55611/javascript-private-methods
function Restaurant() {
var myPrivateVar;
var private_stuff = function() { // Only visible inside Restaurant()
myPrivateVar = "I can set this here!";
}
this.use_restroom = function() { // use_restroom is visible to all
private_stuff();
}
this.buy_food = function() { // buy_food is visible to all
private_stuff();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment