Skip to content

Instantly share code, notes, and snippets.

View yohanolmedo's full-sized avatar
😃

Yohan Olmedo Bello T. yohanolmedo

😃
  • Colombia
View GitHub Profile
@yohanolmedo
yohanolmedo / js_linked_list.js
Created October 19, 2021 15:26 — 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 {
@yohanolmedo
yohanolmedo / js_linked_list.js
Created October 19, 2021 15:26 — 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 {