JSON.parse takes a string like you've got there and deserializes it into objects that your JavaScript can operate on. JSON.stringify is the inverse of that... it takes a JavaScript object and serializes it into a string (hence the name "stringify"... turn into a string)