BinarySearchTree.prototype.findMinimum = function () {
    if (!this.root) {
      return undefined;
    }