Function toString

  • Converts value to a string. An empty string is returned for null and undefined values. The sign of -0 is preserved.

    Parameters

    • value: any

      The value to convert.

    Returns string

    Returns the converted string.

    Since

    5.5.0

    Example

    toString(null)
    // => ''

    toString(-0)
    // => '-0'

    toString([1, 2, 3])
    // => '1,2,3'