A common pattern for web applications is to convert a JSON object to a string, save it somewhere (often in the [[DOM]]), and then parse back to JSON. You might first need to [[convert to JSON]].
To convert a JSON object to string, use `JSON.stringify()` and to parse use `JSON.parse()`.
This example will convert the JSON object `myJSON` to a string and back.
```javascript
let myJSON = {'text': 'some_text', 'value': 2};
let myJSONString = JSON.stringify(myJSON);
myJSONString
// "{"text":"some_text","value":2}"
let myJSONParsed = JSON.parse(myJSONString);
// {"text": "some_text", "value": 2}
```