Skip to content

Instantly share code, notes, and snippets.

@danneamtu
Last active November 28, 2019 12:42
Show Gist options
  • Save danneamtu/377c8067138d8f1728a43c8568e2e580 to your computer and use it in GitHub Desktop.
Save danneamtu/377c8067138d8f1728a43c8568e2e580 to your computer and use it in GitHub Desktop.
function factoryFunction(name){
// closure
let _name = name;
return {
name: _name,
info(){
return 'Some info';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment