Joins the items of the given iterable to a string, based on the given options.
The default separator is a single comma without trailing whitespace: ','.
By default, no options are required and the default transform function
will safely convert null and undefined via `${v}` and everything else with v.toString().
Joins the items of the given iterable to a string, based on the given options. The default separator is a single comma without trailing whitespace:
','
.By default, no options are required and the default
transform
function will safely convertnull
andundefined
via`${v}`
and everything else withv.toString()
.See
toStringSafe the default transform function