Skip to content

Instantly share code, notes, and snippets.

@PierrickP
Last active October 17, 2016 14:38
Show Gist options
  • Save PierrickP/05bb9adda448b9df38e2503d72ff75e2 to your computer and use it in GitHub Desktop.
Save PierrickP/05bb9adda448b9df38e2503d72ff75e2 to your computer and use it in GitHub Desktop.
/**
* My class
*/
class myClass {
constructor(a) {
this.a = a;
/**
* @namespace myClass.b
*/
this.b = {
/**
* Return c
*
* @memberof myClass.b
* @instance
*
* @return {String} Return 'c'
*/
c() {
return 'c';
}
};
}
/**
* Get A value
* @return {String}
*/
d() {
return this.a
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment