mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
198 B
198 B
id | title |
---|---|
b7da7f6f-eb57-4303-bdcb-45397afbf5dc | JavaScript Classes Method Definition |
Example
const obj = {
foo() {
},
bar() {
this.foo();
},
}