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(', ')}` ``` ### Теговый шаблон