vault backup: 2022-07-29 11:50:56

This commit is contained in:
Jet Hughes 2022-07-29 11:50:56 +12:00
parent ea8aab673c
commit eb1fbfa83e

View File

@ -80,3 +80,24 @@ fetchPromise
console.error('could not get products: ${error}') console.error('could not get products: ${error}')
}) })
``` ```
# JSON
Javasript Object Notionation
``` json
[
{
"name": "john",
"type": "person"
},
{
"name": "bob",
"type": "person"
},
{
"name": "sally",
"type": "person"
},
]
```