We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8092a4 commit 94bce76Copy full SHA for 94bce76
Chaining/index.html
@@ -11,9 +11,7 @@ <h2>Source</h2>
11
12
let chainable = new Chainable();
13
14
-console.log(chainable.add(3));
15
-console.log(chainable.add(4));
16
-console.log(chainable.multiply(3));
+console.log(chainable.add(3).add(4).multiply(3));
17
</pre>
18
</div>
19
<div id="console">
Chaining/scripts/main.js
@@ -2,6 +2,4 @@ import Chainable from './Chainable';
2
3
4
5
6
7
0 commit comments