## Tree : 노드로 구성된 계층적 자료구조이다. 최상위 노드를 만들고, 노드에 child를 추가하고 그 child 에 child를 추가하는 형식
insertNode(value) { let tree = new TreeNode(value) this.children.push(tree) }
contains(value) { if(this.value === value){ return true }else{ for(let el of this.children){ if(el.contains(value)){ return true; } } return false; } }