From 98be74f56a9f7c8715d6fb201c2726104ac2ba3d Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Tue, 17 May 2022 20:17:44 +0600 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20placed=20missed=20break=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/02-first-steps/04-variables/article.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 7bce4b9c..be9930ae 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -64,6 +64,7 @@ let message = 'Hello'; ``` Some people also define multiple variables in this multiline style: + ```js no-beautify let user = 'John', age = 25,