Skip to content

Instantly share code, notes, and snippets.

@Willmo36
Created May 8, 2015 15:10
Show Gist options
  • Save Willmo36/26fbcd607e6fe5ec84b4 to your computer and use it in GitHub Desktop.
Save Willmo36/26fbcd607e6fe5ec84b4 to your computer and use it in GitHub Desktop.
JS Object
function Account(){
//private
var _isReseller = false;
//public
var account = {
isReseller:function(){
return _isReseller;
},
setReseller:function(isR){
_isReseller= isR;
}
};
return Object.create(account);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment