Skip to content

Commit 2afc148

Browse files
committed
wip
1 parent a04003b commit 2afc148

File tree

13 files changed

+1129
-2
lines changed

13 files changed

+1129
-2
lines changed

workspaces/javascript-leetcode-month/problems/2726-calculator-with-method-chaining/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22

33
[View Problem on LeetCode](https://leetcode.com/problems/calculator-with-method-chaining/)
44

5+
This problem introduces JavaScript classes, by asking us to implement a simple class that holds one value. The code structure will be similar to classes in Java, C++, and even Python.
6+
7+
We'll also have to support "method chaining", which is a fancy way of saying that we shouldn't have any `void` methods, but rather `return this` from all of our mutating methods.
8+
59
Once you've worked on the problem, check out [the full write-up and solution](solution.md)!

0 commit comments

Comments
 (0)