for (let i = 0, len = array.length; i < len; i++) {
    if (fn(array[i]) === true) {
      return true;
    }
  }