Skip to content

Instantly share code, notes, and snippets.

@Happy-Ferret
Last active March 17, 2017 23:23
Show Gist options
  • Save Happy-Ferret/7bf0db886889704b118a06f7b17d7e34 to your computer and use it in GitHub Desktop.
Save Happy-Ferret/7bf0db886889704b118a06f7b17d7e34 to your computer and use it in GitHub Desktop.
Javascript library example
class fooClass {
constructor(options) {
this.label = options.label
this.bar()
}
bar() {
console.log(this.label)
}
}
module.exports = fooClass;
const fooClass = require ("./fooClass")
var TEST = new fooClass({label:"TEST"})
TEST.label = "TEST2017"
TEST.bar()
// RESULT:
// TEST
// Test2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment