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 af7e57d commit c14f002Copy full SHA for c14f002
Important CS Concepts/Data Structures_Implementations/02_Linked_List.md
@@ -1,3 +1,5 @@
1
+## [Computer science in JavaScript: Linked list](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/)
2
+
3
For our second data structure, we're going to implement a LinkedList.
4
LinkedList is made of a bunch of nodes that point to the next one in the list.
5
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