From f2a4aff6618f6c1a72533725a3fd7b289649f7a3 Mon Sep 17 00:00:00 2001 From: Gramwise <64377838+super-salad@users.noreply.github.com> Date: Thu, 19 May 2022 09:26:30 -0600 Subject: [PATCH] Update article.md Make the example a bit more inclusive. --- 1-js/05-data-types/12-json/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/05-data-types/12-json/article.md b/1-js/05-data-types/12-json/article.md index ae5f045a..4da9993f 100644 --- a/1-js/05-data-types/12-json/article.md +++ b/1-js/05-data-types/12-json/article.md @@ -41,7 +41,7 @@ let student = { age: 30, isAdmin: false, courses: ['html', 'css', 'js'], - wife: null + spouse: null }; *!* @@ -58,7 +58,7 @@ alert(json); "age": 30, "isAdmin": false, "courses": ["html", "css", "js"], - "wife": null + "spouse": null } */ */!*