[JavaScript] JSON in String wandeln

// https://javascript.info/json

// JSON-Objekt definieren
let oJSON = { "name" : "Heinz",
              "age"  : 56,
              "city" : "Hamburg" };
// Testausgabe
console.log(oJSON.name);

// JSON-Objekt in String wandeln
// replacer = null
// space = 4
let sJSON = JSON.stringify(oJSON, null, 4);
console.log(sJSON);