Javascript Object Notation
Umwandlung
//JSON to String
let string = JSON.stringify({"type": "String"})
//String to JSON
let json = JSON.parse("{"type": "String"}")Javascript Object Notation
//JSON to String
let string = JSON.stringify({"type": "String"})
//String to JSON
let json = JSON.parse("{"type": "String"}")