Skip to content

Instantly share code, notes, and snippets.

View jairocolondev's full-sized avatar
🚀

Jairo Colón jairocolondev

🚀
View GitHub Profile
@jairocolondev
jairocolondev / FodU-36.js
Created July 12, 2021 00:59 — forked from robgmerrill/FodU-36.js
Linked List with Search Method by robgmerrill - https://repl.it/FodU/36
// linked list constructor function
function LinkedList() {
// initial creation has no nodes
this.head = null;
this.tail = null;
}
// node constructor function
// properties value, next previous
function Node(value, next, prev) {