Skip to content

Instantly share code, notes, and snippets.

View leerohrer1's full-sized avatar

Lee Rohrer leerohrer1

View GitHub Profile
@leerohrer1
leerohrer1 / js_linked_list.js
Created June 27, 2022 02:08 — 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 {