function TreeNode(val) { this.value = val this.left = null this.right = null } console.log(TreeNode)