• Converts a JavaScript value to a JavaScript Object Notation (JSON) string.

    Parameters

    • value: any

      A JavaScript value, usually an object or array, to be converted.

    • Optionalreplacer: ((this: any, key: string, value: any) => any)

      A function that transforms the results.

        • (this, key, value): any
        • Parameters

          • this: any
          • key: string
          • value: any

          Returns any

    • Optionalspace: string | number

      Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.

    Returns string

  • Converts a JavaScript value to a JavaScript Object Notation (JSON) string.

    Parameters

    • value: any

      A JavaScript value, usually an object or array, to be converted.

    • Optionalreplacer: null | (string | number)[]

      An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.

    • Optionalspace: string | number

      Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.

    Returns string