Last week, I introduced another JavaScript data structure — the linked list. To briefly summarize a linked list, it’s essentially an array-type structure where each element, or node, points to the next node in the list but does not keep track of location in the list. Unlike arrays, nodes do…