Skip to content

Commit 39945d0

Browse files
authored
Update client.js
1 parent a91e51f commit 39945d0

File tree

1 file changed

+2
-0
lines changed
  • GoF/idiomatic/Structural/Composite/ECMAScript/ES5

1 file changed

+2
-0
lines changed

GoF/idiomatic/Structural/Composite/ECMAScript/ES5/client.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var toys = require('./API/toys');
77
// ==============================
88

99
// Here we organize our toys in an optimal way
10+
// 여기서 우리는 장난감을 최적의 방식으로 조직합니다.
1011
var ball1 = toys.ball(),
1112
ball2 = toys.ball(),
1213
ball3 = toys.ball(),
@@ -19,4 +20,5 @@ bigToyBox.add(ball3);
1920
bigToyBox.add(smallToyBox);
2021

2122
// Now we open our big toy box...
23+
// 이제 우리는 큰 장난감 상자를 엽니다...
2224
console.log(bigToyBox.inventory());

0 commit comments

Comments
 (0)