JSON in JavaScript

JavaScript has native JSON.parse and JSON.stringify support.

Key points

JavaScript has native JSON.parse and JSON.stringify support.

Parse JSON

const data = JSON.parse(text);

Stringify JSON

const text = JSON.stringify(data, null, 2);

Validate JSON

try {
  JSON.parse(text);
} catch (error) {
  console.error(error.message);
}