MAP
Description
Applies a LAMBDA function to each value in an array(s) to create a new array of results.
This function is useful for transforming each element of an array based on a custom calculation.
Syntax
MAP(
array1
, lambda_or_arrayN, …
) - array1: The array to be mapped.
- lambda_or_arrayN: A LAMBDA which must be the last argument and which must have either a parameter for each array passed, or another array to be mapped.