Maps all of the items in the enumeration to another value, returning a new array. This method corresponds to `map()` defined in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index,
(
callback: (this: Target, item: T, index: number, arr: this) => U,
target?: Target
)
| 572 | @public |
| 573 | */ |
| 574 | map<U, Target>( |
| 575 | callback: (this: Target, item: T, index: number, arr: this) => U, |
| 576 | target?: Target |
| 577 | ): NativeArray<U>; |
no outgoing calls
no test coverage detected