← Code LabJavaScript0/50 solved · 0%
Objects · medium

22. Objects with methods

`this` inside object literals.

Create `const wallet = { balance: 10, add(n) { ... } }` where `add` increases `this.balance` and returns it.
Required in your answer: this.balance