Skip to content

Instantly share code, notes, and snippets.

View RayRedGoose's full-sized avatar
👩‍💻

Raisa Primerova RayRedGoose

👩‍💻
View GitHub Profile
@bradtraversy
bradtraversy / js_linked_list.js
Last active June 24, 2025 17:14
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 {