Skip to content

Instantly share code, notes, and snippets.

@ismaelsadeeq
ismaelsadeeq / list.js
Created January 31, 2022 19:49
Linked List implementation with Javascript ES9
class Node {
constructor(element) {
this.element = element;
this.next = null;
}
}
class LinkedList {
constructor() {
this.head = null,
this.size = 0