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