Skip to content

Instantly share code, notes, and snippets.

View danilogila's full-sized avatar

Danilo Gila de Santana danilogila

View GitHub Profile
@danilogila
danilogila / js_linked_list.js
Last active February 22, 2021 01:00 — 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 {