aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/operators/bitwise_and/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/operators/bitwise_and/index.html')
-rw-r--r--files/ru/web/javascript/reference/operators/bitwise_and/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/reference/operators/bitwise_and/index.html b/files/ru/web/javascript/reference/operators/bitwise_and/index.html
index ce232c1463..cb2c53503a 100644
--- a/files/ru/web/javascript/reference/operators/bitwise_and/index.html
+++ b/files/ru/web/javascript/reference/operators/bitwise_and/index.html
@@ -5,12 +5,12 @@ tags:
- JavaScript
- Оператор
- По
- - Поитовые операторы
+ - Побитовые операторы
translation_of: Web/JavaScript/Reference/Operators/Bitwise_AND
---
<div>{{jsSidebar("Operators")}}</div>
-<p>Побитовый опеератор И (<code>&amp;</code>) возвращает <code>1</code> в каждой битовой позиции,  для которой соответствующие биты обоих операндов равны <code>1</code>.</p>
+<p>Побитовый оператор И (<code>&amp;</code>) возвращает <code>1</code> в каждой битовой позиции,  для которой соответствующие биты обоих операндов равны <code>1</code>.</p>
<div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-and.html")}}</div>
@@ -72,7 +72,7 @@ translation_of: Web/JavaScript/Reference/Operators/Bitwise_AND
14 &amp; 9 (base 10) = 00000000000000000000000000001000 (base 2) = 8 (base 10)
</pre>
-<p>Побитовоее И для любого числа <code><var>x</var></code> с <code>0</code> дает <code>0</code>.</p>
+<p>Побитовое И для любого числа <code><var>x</var></code> с <code>0</code> дает <code>0</code>.</p>
<h2 id="Примеры">Примеры</h2>