aboutsummaryrefslogtreecommitdiff
path: root/files/ru/learn/javascript/first_steps/variables/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/learn/javascript/first_steps/variables/index.html')
-rw-r--r--files/ru/learn/javascript/first_steps/variables/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/learn/javascript/first_steps/variables/index.html b/files/ru/learn/javascript/first_steps/variables/index.html
index cd0dad82d1..7c7b5e42ec 100644
--- a/files/ru/learn/javascript/first_steps/variables/index.html
+++ b/files/ru/learn/javascript/first_steps/variables/index.html
@@ -38,8 +38,8 @@ original_slug: Learn/JavaScript/Первые_шаги/Variables
<pre class="brush: js notranslate">const button = document.querySelector('button');
button.onclick = function() {
- let name = prompt('Как Вас зовут?');
- alert('Привет ' + name + ', рады видеть Вас!');
+ let name = prompt('Как вас зовут?');
+ alert('Привет ' + name + ', рады видеть вас!');
}</pre>
<p>{{ EmbedLiveSample('What_is_a_variable', '100%', 50, "", "", "hide-codepen-jsfiddle") }}</p>