Answers for "search fullname in angular"

0

search fullname in angular

const response = forkJoin([
  this.service.getUserByFirstName(this.firstName),
  this.service.getUserByLastName(this.lastName)
]);

response.subscribe(
  ([firstNameUsers, lastNameUsers]) => this.users = lodash.intersectionWith(firstNameUsers, lastNameUsers, lodash.isEqual)
);
Posted by: Guest on October-14-2021

Code answers related to "search fullname in angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language