MCPcopy Create free account
hub / github.com/TheAlgorithms/JavaScript /

Class

Data-Structures/Tree/BinarySearchTree.js:16–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14const Node = (function Node() {
15 // Node in the tree
16 class Node {
17 constructor(val) {
18 this.value = val
19 this.left = null

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected