Documentation

find()

Returns the first object in the list for which the provided callback returns true.

find(callback: (item: T) => any): T | undefined;

Related