class Node { constructor(value){ this.value = value this.left = null this.right = null } } class BinarySeachTree { constructor(){ this.root = null } }