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