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

Class

binary-trees/minimal-tree.js:11–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 */
10
11class Node {
12 constructor(value) {
13 this.value = value;
14 this.left = null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected