arrayFind

Description

Finds an element inside the collection and returns its index. If the element is not found, it returns -1.

Parameters

Return Type

Number

Example

return arrayFind(usersInGroups({"jira-users"}), "admin");

The result of the routine is the index of the searched element in the array returned by usersInGroups(). If the array contains duplicates, the routine returns the index of the first occurrence of the searched element.

See also