string.map()
Iterates over every entry of the string and calls the closure function to work on the element of the string.
Introduced: 6.0.0.105
string.map( closure=function )
Returns: String
Argument | Description |
---|---|
closure
function,
optional
|
Closure or a function reference that will be called for each of the iteration. Alias: callback |