diff --git a/content/notes/06-async-javascript.md b/content/notes/06-async-javascript.md index 86bc44afb..b38c2dc52 100644 --- a/content/notes/06-async-javascript.md +++ b/content/notes/06-async-javascript.md @@ -80,3 +80,24 @@ fetchPromise console.error('could not get products: ${error}') }) ``` + +# JSON + +Javasript Object Notionation + +``` json +[ + { + "name": "john", + "type": "person" + }, + { + "name": "bob", + "type": "person" + }, + { + "name": "sally", + "type": "person" + }, +] +``` \ No newline at end of file