Skip to content

Commit 820f335

Browse files
committed
export LinkedList class
1 parent 3619a2e commit 820f335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linked-list-tail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Node {
55
}
66
}
77

8-
class LinkedList {
8+
export class LinkedList {
99
constructor() {
1010
this.head = null;
1111
this.tail = null;

0 commit comments

Comments
 (0)