Skip to content

Instantly share code, notes, and snippets.

View rahulnshah's full-sized avatar
🚀
...5...3...2...1...Blastoff!!

Rahul Shah rahulnshah

🚀
...5...3...2...1...Blastoff!!
View GitHub Profile
@rahulnshah
rahulnshah / js_linked_list.js
Created March 25, 2022 22:53 — 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 {