Skip to content

Commit f2a4aff

Browse files
authored
Update article.md
Make the example a bit more inclusive.
1 parent 2901e0c commit f2a4aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/05-data-types/12-json/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ let student = {
4141
age: 30,
4242
isAdmin: false,
4343
courses: ['html', 'css', 'js'],
44-
wife: null
44+
spouse: null
4545
};
4646

4747
*!*
@@ -58,7 +58,7 @@ alert(json);
5858
"age": 30,
5959
"isAdmin": false,
6060
"courses": ["html", "css", "js"],
61-
"wife": null
61+
"spouse": null
6262
}
6363
*/
6464
*/!*

0 commit comments

Comments
 (0)