This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) { |