diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-09-11 19:55:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-11 19:55:07 +0300 |
commit | d5034f32a14f732d8745bff8e3cef9067c09fe20 (patch) | |
tree | a7b5a0d089f975ca8316e7c19bb311c0e03a42e5 /files | |
parent | 710fa0fca853831ec2ef87b66b932d3927ad0c7f (diff) | |
download | translated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.tar.gz translated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.tar.bz2 translated-content-d5034f32a14f732d8745bff8e3cef9067c09fe20.zip |
RU: Fix Live sample on Strings page (#2426)
Diffstat (limited to 'files')
-rw-r--r-- | files/ru/learn/javascript/first_steps/strings/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/learn/javascript/first_steps/strings/index.html b/files/ru/learn/javascript/first_steps/strings/index.html index aad1044a22..9acead263a 100644 --- a/files/ru/learn/javascript/first_steps/strings/index.html +++ b/files/ru/learn/javascript/first_steps/strings/index.html @@ -121,7 +121,7 @@ button.onclick = function() { alert('Hello ' + name + ', nice to see you!'); }</pre> -<p>{{ EmbedLiveSample('Concatenation_in_context', '100%', 50) }}</p> +<p>{{ EmbedLiveSample('Конкатенация_строк_в_контексте', '100%', 50, "", "", "hide-codepen-jsfiddle") }}</p> <p>Здесь мы используем функцию {{domxref ("Window.prompt ()", "Window.prompt ()")}} в строке 4, которая просит пользователя ответить на вопрос через всплывающее диалоговое окно, а затем сохраняет введённый текст внутри заданной переменной — в этом случае <code><strong>name</strong></code>. Затем мы используем функцию {{domxref ("Window.alert ()", "Window.alert ()")}} в строке 5 для отображения другого всплывающего окна, содержащего строку, которую мы собрали из двух строковых литералов и переменной <code>name</code>.</p> |