Skip to content

Latest commit

 

History

History
70 lines (56 loc) · 754 Bytes

01-json.md

File metadata and controls

70 lines (56 loc) · 754 Bytes

Le format JSON

JSON ou JavaScript Object Notation, est un format de fichier standard permettant de transmettre des données sous la forme de paires d'attributs clé-valeur et de tableau.

Types de base JSON

  • Nombre
{
  "nombre_eleves" : 12
}
  • Chaîne de caractères
{
  "prenom" : "Jean"
}
  • Booléen
{
  "actif" : true
}
  • Tableau
{
  "liste_personnes" : [
    {
      "prenom" : "Hugues",
      "age" : 42
    },
    {
      "prenom" : "Thierry",
      "age" : 46
    }
  ]
}
[
    {
      "prenom" : "Hugues",
      "age" : 42
    },
    {
      "prenom" : "Thierry",
      "age" : 46
    }
]
  • null
{
  "prenom" : "Thierry",
  "age": null
}