Returns true if the array contains the given element, and false otherwise.
(element: T)
| 56 | findIndex(pred: ArrayFunc<T, boolean>, fromIndex?: number): number; |
| 57 | /** Returns true if the array contains the given element, and false otherwise. */ |
| 58 | includes(element: T): boolean; |
| 59 | |
| 60 | /** |
| 61 | * Return a string obtained by converting each element in the array to a string, and joining it with the |
no outgoing calls
no test coverage detected