From b5a0350397a8855ff3aca95fbc1bf1e44a8f351e Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Wed, 4 Jan 2023 21:49:14 +0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=BE=20add=20missed=20whitespace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/10-error-handling/1-try-catch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/10-error-handling/1-try-catch/article.md b/1-js/10-error-handling/1-try-catch/article.md index bf548373ad..fadd06a6b2 100644 --- a/1-js/10-error-handling/1-try-catch/article.md +++ b/1-js/10-error-handling/1-try-catch/article.md @@ -186,7 +186,7 @@ Usually it's used to decode data received over the network, from the server or a We receive it and call `JSON.parse` like this: ```js run -let json = '{"name":"John", "age": 30}'; // data from the server +let json = '{"name": "John", "age": 30}'; // data from the server *!* let user = JSON.parse(json); // convert the text representation to JS object

AltStyle によって変換されたページ (->オリジナル) /