NewDash

    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.

      5.5.0

      toString(null)
      // => ''

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

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