/linked-lists

Primary LanguageJavaScript

Implementation of Linked Lists using JavaScript. This project creates two classes: LinkedList and Node. In the LinkedList class, append, prepend, size, head, tail, at(index), pop, contains(value), find(value), and toString methods are available for all linked list instances.