MCPcopy Create free account
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions / Node

Class Node

linkedLists/construct-linked-list.js:2–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// This is an input class. Do not edit.
2class Node {
3 constructor(value) {
4 this.value = value;
5 this.prev = null;
6 this.next = null;
7 }
8 }
9
10 // Feel free to add new properties and methods to the class.
11 class DoublyLinkedList {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected