Skip to content

Commit c14f002

Browse files
authored
Update 02_Linked_List.md
1 parent af7e57d commit c14f002

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Important CS Concepts/Data Structures_Implementations/02_Linked_List.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## [Computer science in JavaScript: Linked list](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/)
2+
13
For our second data structure, we're going to implement a LinkedList.
24
LinkedList is made of a bunch of nodes that point to the next one in the list.
35
Every node in a LinkedLists has two properties, the value of whatever is being store and a pointer to the next node in the list.

0 commit comments

Comments
 (0)