Skip to content

Instantly share code, notes, and snippets.

View gbuszmicz's full-sized avatar

Gonzalo F. Buszmicz gbuszmicz

  • Rosario, Argentina
View GitHub Profile
@gbuszmicz
gbuszmicz / linkedList.js
Last active December 22, 2016 14:36
Singly linked list in JS
const LinkedList = () => {
let _list = {
head: null,
tail: null,
length: 0
}
// Node creator
let Node = (data) => {
let node = {