What is a linked list?A data structure that contains a head, tail and length property.
Linked lists consist of nodes, and each node has a value and a pointer to another node or null.
Everything is about node, and how to set .next to some value..!
cla...