Which statements about findIndex are true? Select all that apply.
Explanation
findIndex reports the index of the first element whose callback is truthy, and it reports -1 when none qualifies. Returning undefined is the no-match behavior associated with find, not findIndex.