Thirsty to learn about linked lists? You’ve come to the right place — this post is an introduction to linked list data structures — what they are, how they compare to arrays, and how to create and manipulate them in JavaScript.What is a Linked List?A linked list is a linear data structure in which each element (node) stores both data and directions (pointer or reference) to the next node’s location in memory. Linked lists come in three different flavours:Singly Linked Lists 🍋Doubly Linked Li...