Skip to content

Instantly share code, notes, and snippets.

View pawelrus91's full-sized avatar

Paweł pawelrus91

  • Poland
View GitHub Profile
@pawelrus91
pawelrus91 / js_linked_list.js
Last active July 20, 2019 22:33 — 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 {