When first learning a programming language, it is imperative to understand how different data structures can be used to store data. Each programming language has its own set of data structures, some of which are unique to that language and others that are standard and seen in other programming languages. While not a built-in data structure in JavaScript, linked lists perform well in insertions and deletions and are common building blocks of other data structures. This course introduces linked lists in JavaScript and helps you understand how linked lists are created and used as a data structure.
Learn More