The Odin Project - Linked List Assignment

All the magic is in the console.

Create a new LinkedList with

new LinkedList([val1, val2, val3, ...])`

or use one of the premade LinkedLists

window.llA = new LinkedList([0,1,2,3,4,5,7,8,9]);
window.llB = new LinkedList([1,4,6,7,9,124,509,1025,1403]);

Interact with a LinkedList via the following methods: