/** * Binary Tree Node */ class BinaryTreeNode { constructor(value) { this.value = value; this.left = null; this.right = null; } } module.exports = BinaryTreeNode;