Skip to content

Instantly share code, notes, and snippets.

@torpedo87
torpedo87 / list.js
Created February 22, 2017 01:54 — forked from honux77/list.js
js list
//https://developer.mozilla.org/ko/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript
function Node(value) {
this.element = value
this.next = null
}
function LinkedList() {
this.head = null;
this.length = 0;