• Returns a string that represents the given string array

    Parameters

    • Optionaltexts: (undefined | null | string)[]

      the source strings to inspect

    Returns string | undefined

    a string that represents the given string array

    fromChars(undefined);    // undefined
    fromChars(['f', 'o', 'o', 'b', 'a', 'r']); // 'foobar'