Skip to content

Instantly share code, notes, and snippets.

@missingdays
Created October 12, 2015 19:18
Show Gist options
  • Save missingdays/a77892f3bca08140a785 to your computer and use it in GitHub Desktop.
Save missingdays/a77892f3bca08140a785 to your computer and use it in GitHub Desktop.
function a(){
var b = 5;
return {
setB: function(n){
b = n;
},
getB: function(){
return b
}
};
}
ob = a();
ob.setB(10);
ob.getB();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment