Skip to content

Instantly share code, notes, and snippets.

View azizulhasan's full-sized avatar

Azizul Hasan azizulhasan

View GitHub Profile
@azizulhasan
azizulhasan / js_linked_list.js
Created November 4, 2021 00:31 — forked from bradtraversy/js_linked_list.js
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {