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