BinaryTree Implementation of Binary Tree in JavaScript Usage: var testTree = new BinaryTree(); testTree.addValue(5); testTree.addValue(2); testTree.addValue(3); testTree.addValue(1); testTree.traverse(); var searched = testTree.seach(3);