Skip to content

Instantly share code, notes, and snippets.

View ifeelblue99's full-sized avatar
🪂
discovering...

Baran Cakirbey ifeelblue99

🪂
discovering...
View GitHub Profile
@bradtraversy
bradtraversy / js_linked_list.js
Last active July 20, 2025 19:42
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 {
@Geoff-Ford
Geoff-Ford / master-javascript-interview.md
Last active May 7, 2026 04:11
Eric Elliott's Master the JavaScript Interview Series