Created
November 17, 2018 19:38
-
-
Save JeffML/e8272771364ac37185bb0c02dc675ee9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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