Skip to content

Instantly share code, notes, and snippets.

View Daftscientist's full-sized avatar
🎯
Focusing

Leo Johnston Daftscientist

🎯
Focusing
View GitHub Profile
@Daftscientist
Daftscientist / LinkedList.js
Last active February 2, 2026 11:14
LinkedList Implementation JavaScript
class InternalNode {
constructor(data) {
this.data = data;
this.next = null;
};
}
class LinkedList {
constructor() {
this.head = null;