Skip to content

Commit 6f16a23

Browse files
committed
updates
1 parent a3626a9 commit 6f16a23

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

stack.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
Last In First Out
2-
LIFO
1+
// Last In First Out
2+
// LIFO
3+
4+
class Stack {
5+
constructor() {
6+
this.stack = [];
7+
}
8+
9+
}

0 commit comments

Comments
 (0)