Skip to content

Instantly share code, notes, and snippets.

@shobhitchittora
Last active April 15, 2018 13:59
Show Gist options
  • Save shobhitchittora/44b18af5a9d89bf19c310f46ddfa7593 to your computer and use it in GitHub Desktop.
Save shobhitchittora/44b18af5a9d89bf19c310f46ddfa7593 to your computer and use it in GitHub Desktop.
JS Design Patterns - MODULE - Object Literal
const myModule = {
propertyA: "some value",
propertyB: function(){
console.log(this.propertyA);
}
};
console.log(myModule.propertyB()); // "some value"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment