aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/operators/bitwise_and_assignment
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/javascript/reference/operators/bitwise_and_assignment')
-rw-r--r--files/fr/web/javascript/reference/operators/bitwise_and_assignment/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/files/fr/web/javascript/reference/operators/bitwise_and_assignment/index.html b/files/fr/web/javascript/reference/operators/bitwise_and_assignment/index.html
new file mode 100644
index 0000000000..3300032225
--- /dev/null
+++ b/files/fr/web/javascript/reference/operators/bitwise_and_assignment/index.html
@@ -0,0 +1,50 @@
+---
+title: Affectation après ET binaire (&=)
+slug: Web/JavaScript/Reference/Operators/Bitwise_AND_assignment
+tags:
+ - Assignment operator
+ - JavaScript
+ - Language feature
+ - Operator
+ - Reference
+browser-compat: javascript.operators.bitwise_and_assignment
+translation-of: Web/JavaScript/Reference/Operators/Bitwise_AND_assignment
+---
+<div>{{jsSidebar("Operators")}}</div>
+
+<p>L'opérateur d'affectation après ET binaire (<code>&amp;=</code>) utilise la représentation binaire des deux opérandes, applique un ET logique entre chaque puis affecte le résultat de l'opération à la variable représentée par l'opérande gauche.</p>
+
+<div>{{EmbedInteractiveExample("pages/js/expressions-bitwise-and-assignment.html")}}</div>
+
+<h2 id="syntax">Syntaxe</h2>
+
+<pre class="brush: js">
+<strong>Opérateur :</strong> x &amp;= y
+<strong>Signification :</strong> x = x &amp; y
+</pre>
+
+<h2 id="examples">Exemples</h2>
+
+<h3 id="using_bitwise_and_assignment">Utiliser l'affectation après ET binaire</h3>
+
+<pre class="brush: js">
+let a = 5;
+// 5: 00000000000000000000000000000101
+// 2: 00000000000000000000000000000010
+a &amp;= 2; // 0
+</pre>
+
+<h2 id="specifications">Spécifications</h2>
+
+<p>{{Specifications}}</p>
+
+<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat}}</p>
+
+<h2 id="see_also">Voir aussi</h2>
+
+<ul>
+ <li><a href="/fr/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment">Les opérateurs d'affectation dans le guide JavaScript</a></li>
+ <li><a href="/fr/docs/Web/JavaScript/Reference/Operators/Bitwise_AND">L'opérateur ET binaire</a></li>
+</ul>