Implement a Singly Linked List in JavaScript

A LinkedList is a sequential collection of data. Linked List are of two types, Singly Linked List and Doubly Linked List. In this article, I will discuss how you can use es6 (JavaScript) to implement a Singly Linked List. The example below uses object-oriented features of es6, please refer my previous on Object-Oriented Programming in ES6. Download the course [Read More]