JSON.stringify()
A common use of JSON is to exchnage data to/from a web server.
When receving data from a web server, the data is always a String.
Parse the data with JSON.parse(), and the data becomes a javascript object.
JSON.parse(string)(object)