LinkedList
How a LinkedList Looks:
A node contains only two things: data and a reference to the next node, which is set to null by default.
First, we are going to create an empty node.
class Node{
constructor(data,next = null) {
this.data = data
...
nikhilkumar007.hashnode.dev10 min read
Abhishek Kumar Mandal
Upgrading myself day by day
Nice article bro...