pgraff

Results 1 issues of pgraff

In the definition of the LinkedList.forEach function: `LinkedList.prototype.forEach = function(callback) { var node = this.head; while (node) { callback(node.value); node = node.next; } };` Doesn't the `node = node.next;` line...