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 a91e51f commit 39945d0Copy full SHA for 39945d0
GoF/idiomatic/Structural/Composite/ECMAScript/ES5/client.js
@@ -7,6 +7,7 @@ var toys = require('./API/toys');
7
// ==============================
8
9
// Here we organize our toys in an optimal way
10
+// 여기서 우리는 장난감을 최적의 방식으로 조직합니다.
11
var ball1 = toys.ball(),
12
ball2 = toys.ball(),
13
ball3 = toys.ball(),
@@ -19,4 +20,5 @@ bigToyBox.add(ball3);
19
20
bigToyBox.add(smallToyBox);
21
22
// Now we open our big toy box...
23
+// 이제 우리는 큰 장난감 상자를 엽니다...
24
console.log(bigToyBox.inventory());
0 commit comments