diff --git a/1-js/05-data-types/11-json/article.md b/1-js/05-data-types/11-json/article.md index 4081949e..88dd2d3f 100644 --- a/1-js/05-data-types/11-json/article.md +++ b/1-js/05-data-types/11-json/article.md @@ -36,7 +36,7 @@ JavaScript provides methods: - `JSON.stringify` to convert objects into JSON. - `JSON.parse` to convert JSON back into an object. -For instance, here's we `JSON.stringify` a student: +For instance, here we `JSON.stringify` a student: ```js run let student = { name: 'John',