meta data for this page
  •  

JSON

Exemple d'utilisation de JSON.parse et JSON.stringify

  • parse(): converti JavaScript en JSON
  • stringify(): converti JSON en JavaScript


var magicien = '{"nom": "Gandalf", "prenom": "Le Gris", "espèce": "Maia"}'

var personnage = JSON.parse(magicien)

console.log(personnage) // Object { nom: "Gandalf", prenom: "Le Gris", "espèce": "Maia" }

console.log(personnage).nom // "Gandalf" 

console.log(JSON.stringify(personnage)) // {"nom":"Gandalf","prenom":"Le Gris","espèce":"Maia"}