From eb1fbfa83ed0ed307402c0838fc18c297c47d2d2 Mon Sep 17 00:00:00 2001 From: Jet Hughes Date: Fri, 29 Jul 2022 11:50:56 +1200 Subject: [PATCH] vault backup: 2022-07-29 11:50:56 --- content/notes/06-async-javascript.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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