Returns a position/index of the first occurrence of the 'value' in a given array. Returns null when value is not found or when any of the arguments are null.
Expression categories: Array
Declared arguments
Array: Array from which to return element's position. Expression<Array<T>>
Value: Value for which to find position in the array. Expression<T>