Skip to content

Instantly share code, notes, and snippets.

@JeffML
Created November 17, 2018 19:38
Show Gist options
  • Save JeffML/e8272771364ac37185bb0c02dc675ee9 to your computer and use it in GitHub Desktop.
Save JeffML/e8272771364ac37185bb0c02dc675ee9 to your computer and use it in GitHub Desktop.
class MyClass {
@log
sum(a, b) {
return a + b;
}
}
const instance = new MyClass()
instance.sum(2, 3); // execute the decorated method
// the decorator dumps this string to the console:
// sum(2,3) = 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment