Intro to Linked Lists via JavaScript - Part 1: Overview

1 · · Feb. 21, 2020, midnight
As your application and data becomes increasingly complex, being restricted to basic arrays will become a major bottleneck in performance and in what you’re able to accomplish. We’re going to need to develop something greater than the most basic out-of-the-box data type that JavaScript offers us. With linked lists, we can build the foundation for learning more advanced data structures and algorithms. Concept Linked lists are a special way of using classes to create chains of connected objects. E...