Package: effect
Module: Array
Joins string elements with a separator.
Example (Joining strings)
import { Array } from "effect"
console.log(Array.join(["a", "b", "c"], "-")) // "a-b-c"
See
intersperse — insert separator elements without joiningSignature
declare const join: { (sep: string): (self: Iterable<string>) => string; (self: Iterable<string>, sep: string): string; }
Since v2.0.0