From 8f3a87afc07db1c708e241ae441b065ccf1e5af4 Mon Sep 17 00:00:00 2001 From: baileys-li <47776594+baileys-li@users.noreply.github.com> Date: Fri, 26 Apr 2024 21:34:44 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=20=D0=BE=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D0=BA=D1=83=20(#5313)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/template-strings/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/template-strings/index.md b/js/template-strings/index.md index 7ed8c9d2f4..18ead97952 100644 --- a/js/template-strings/index.md +++ b/js/template-strings/index.md @@ -121,7 +121,7 @@ const months = 2 `Меня зовут ${name}. Я изучаю ${language} уже ${months} месяца.` // А можно выполнять целые выражения -`Я люблю фрукты: ${['яблоки', 'груши', 'апельсины'].join('', '')}` +`Я люблю фрукты: ${['яблоки', 'груши', 'апельсины'].join(', ')}` ``` ### Теговый шаблон