Javascript Object Notation

Umwandlung


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