The findLast()
method of TypedArray
instances iterates the typed array in reverse order and returns the value of the first element that satisfies the provided testing function. If no elements satisfy the testing function, undefined
is returned. This method has the same algorithm as Array.prototype.findLast()
.