> 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/.jsonparse.md).

# JsonParse

> ⚠️ **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 JSON string into a JS object

## Parameters

JsonParse takes no parameters

## Usage On Arrays/Objects

```javascript
arr = "[\"wow\"]"
// setup the string

log arr.JsonParse()
// returns array ["wow"]
```
