> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/legacy-osl-originos/prototype-helpers/.jsonstringify.md).

# JsonStringify

> ⚠️ **Not type methods.** These are functions of the [`json` package](/packages/data/json.md): use `json.parse()`, `json.stringify()`, `json.format()`, `json.clean()`.

## Description

Converts A JS object into a JSON string

## Parameters

JsonStringify takes no parameters

## Usage On Arrays/Objects

```javascript
arr = ["wow"]
// setup the array

log arr.JsonStringify()
// returns string "[\"wow\"]"
```
