aboutsummaryrefslogtreecommitdiff
path: root/files/fr/conflicting/web/javascript/reference/operators_2be16fc74d75a7c9dca0abca1dc5883b/index.html
blob: d019cb863765bd582098b55c7c9ab3b59f58d3e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
---
title: Opérateurs d'affectation
slug: Web/JavaScript/Reference/Opérateurs/Opérateurs_d_affectation
tags:
  - JavaScript
  - Operator
  - Reference
translation_of: Web/JavaScript/Reference/Operators#Assignment_operators
translation_of_original: Web/JavaScript/Reference/Operators/Assignment_Operators
---
<div>{{jsSidebar("Operators")}}</div>

<p>Un <strong>opérateur d'affectation</strong> permet d'assigner une valeur à son opérande gauche en se basant sur la valeur de son opérande droit.</p>

<div>{{EmbedInteractiveExample("pages/js/expressions-assignment.html")}}</div>

<p class="hidden">Le code source de cet exemple interactif est disponible dans un dépôt GitHub. Si vous souhaitez contribuez à ces exemples, n'hésitez pas à cloner <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> et à envoyer une <em>pull request</em> !</p>

<h2 id="Description">Description</h2>

<p>L'opérateur utilisé pour l'affectation est le symbole égal (<code>=</code>), il permet d'affecter la valeur de l'opérande droit à son opérande gauche. Ainsi, quand on écrit <code>x = y</code>, on affecte la valeur de <code>y</code> à <code>x</code>. Les autres opérateurs d'affectation sont généralement des raccourcis pour des opérations standards. Ils sont décrits ci-après avec définitions et exemples.</p>

<table class="standard-table">
 <tbody>
  <tr>
   <th>Nom</th>
   <th>Opérateur (raccourci)</th>
   <th>Signification</th>
  </tr>
  <tr>
   <td><a href="#Assignment">Affectation</a></td>
   <td><code>x = y</code></td>
   <td><code>x = y</code></td>
  </tr>
  <tr>
   <td><a href="#Addition_assignment">Affectation après addition</a></td>
   <td><code>x += y</code></td>
   <td><code>x = x + y</code></td>
  </tr>
  <tr>
   <td><a href="#Subtraction_assignment">Affectation après soustraction</a></td>
   <td><code>x -= y</code></td>
   <td><code>x = x - y</code></td>
  </tr>
  <tr>
   <td><a href="#Multiplication_assignment">Affectation après multiplication</a></td>
   <td><code>x *= y</code></td>
   <td><code>x = x * y</code></td>
  </tr>
  <tr>
   <td><a href="#Division_assignment">Affectation après division</a></td>
   <td><code>x /= y</code></td>
   <td><code>x = x / y</code></td>
  </tr>
  <tr>
   <td><a href="#Remainder_assignment">Affectation du reste</a></td>
   <td><code>x %= y</code></td>
   <td><code>x = x % y</code></td>
  </tr>
  <tr>
   <td><a href="#Exponentiation">Affectation après exponentiation</a></td>
   <td><code>x **= y</code></td>
   <td><code>x = x ** y</code></td>
  </tr>
  <tr>
   <td><a href="#Left_shift_assignment">Affectation après décalage à gauche</a></td>
   <td><code>x &lt;&lt;= y</code></td>
   <td><code>x = x &lt;&lt; y</code></td>
  </tr>
  <tr>
   <td><a href="#Right_shift_assignment">Affectation après décalage à droite</a></td>
   <td><code>x &gt;&gt;= y</code></td>
   <td><code>x = x &gt;&gt; y</code></td>
  </tr>
  <tr>
   <td><a href="#Unsigned_right_shift_assignment">Affectation après décalage à droite non-signé</a></td>
   <td><code>x &gt;&gt;&gt;= y</code></td>
   <td><code>x = x &gt;&gt;&gt; y</code></td>
  </tr>
  <tr>
   <td><a href="#Bitwise_AND_assignment">Affectation après ET binaire</a></td>
   <td><code>x &amp;= y</code></td>
   <td><code>x = x &amp; y</code></td>
  </tr>
  <tr>
   <td><a href="#Bitwise_XOR_assignment">Affectation après OU exclusif binaire</a></td>
   <td><code>x ^= y</code></td>
   <td><code>x = x ^ y</code></td>
  </tr>
  <tr>
   <td><a href="#Bitwise_OR_assignment">Affectation après OU binaire</a></td>
   <td><code>x |= y</code></td>
   <td><code>x = x | y</code></td>
  </tr>
 </tbody>
</table>

<h2 id="Affectation"><a name="Assignment">Affectation</a></h2>

<p>L'opérateur d'affectation simple permet d'assigner une valeur à une variable. Le résultat de l'affectation est la valeur affectée. Il est possible de chaîner plusieurs opérateurs d'affectation afin d'assigner une même valeur à plusieurs variables. Voir l'exemple ci-après.</p>

<h4 id="Syntaxe">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x = y
</pre>

<h4 id="Exemples">Exemples</h4>

<pre class="brush: js">// Si on dispose des variables suivantes :
//  x = 5;
//  y = 10;
//  z = 25;

x = y;     // x vaudra désormais 10
x = y = z; // x, y et z valent désormais tous 25
</pre>

<h3 id="Affectation_après_addition"><a name="Addition_assignment">Affectation après addition</a></h3>

<p>Cet opérateur permet d'ajouter la valeur de l'opérande droit à une variable, le résultat de l'addition étant affecté à cette variable. Les types des deux opérandes déterminent le comportement de l'opérateur. Selon le type, on pourra en effet avoir une addition ou une concaténation. Voir la page sur l'opérateur d'{{jsxref("Opérateurs/Opérateurs_arithmétiques", "addition", "#Addition_(.2B)", 1)}} pour plus d'informations.</p>

<h4 id="Syntaxe_2">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x += y
<strong>Signification :</strong>  x  = x + y
</pre>

<h4 id="Exemples_2">Exemples</h4>

<pre class="brush: js">// Si on dispose des variables suivantes :
//  toto = "toto";
//  truc = 5;
//  machin = true;


// Nombre + Nombre -&gt; addition
truc += 2; // 7

// Booléen + Booléen -&gt; addition
machin += 1; // 2

// Booléen + Booléen -&gt; addition
machin += false; // 1

// Nombre + String -&gt; concaténation
truc += "toto"; // "5toto"

// String + Booléen -&gt; concaténation
toto += false; // "totofalse"

// String + String -&gt; concaténation
toto += "truc"; // "tototruc"
</pre>

<h3 id="Affectation_après_soustraction"><a name="Subtraction_assignment">Affectation après soustraction</a></h3>

<p>Cet opérateur soustrait la valeur de l'opérande droit à la variable puis affecte le résultat de cette soustraction à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_arithmétiques", "soustraction", "#Soustraction_(-)", 1)}} pour plus d'information.</p>

<h4 id="Syntaxe_3">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x -= y
<strong>Signification :</strong>  x  = x - y
</pre>

<h4 id="Exemples_3">Exemples</h4>

<pre class="brush: js">// Si on a la variable suivante :
//  truc = 5;

truc -= 2;     // 3
truc -= "toto"; // NaN
</pre>

<h3 id="Affectation_après_multiplication"><a name="Multiplication_assignment">Affectation après multiplication</a></h3>

<p>Cet opérateur permet de multiplier une variable par la valeur de l'opérande droit et d'affecter le résultat de cette opération à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_arithmétiques", "multiplication", "#Multiplication_(*)", 1)}} pour plus d'informations.</p>

<h4 id="Syntaxe_4">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x *= y
<strong>Signification :</strong>  x  = x * y
</pre>

<h4 id="Exemples_4">Exemples</h4>

<pre class="brush: js">// Si on a la variable suivante :
//  truc = 5;

truc *= 2;     // 10
truc *= "toto"; // NaN
</pre>

<h3 id="Affectation_après_division"><a name="Division_assignment">Affectation après division</a></h3>

<p>Cet opérateur permet de diviser une variable par la valeur de l'opérande droit et d'affecter le résultat de cette opération à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_arithmétiques", "division", "#Division_(.2F)", 1)}} pour plus d'informations.</p>

<h4 id="Syntaxe_5">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x /= y
<strong>Signification :</strong>  x  = x / y
</pre>

<h4 id="Exemples_5">Exemples</h4>

<pre class="brush: js">// Si on a la variable suivante :
//  truc = 5;

truc /= 2;     // 2.5
truc /= "toto"; // NaN
truc /= 0;     // Infinity
</pre>

<h3 id="Affectation_du_reste"><a name="Remainder_assignment">Affectation du reste</a></h3>

<p>Cet opérateur permet de divisier une variable par la valeur de l'opérande droit et d'affecter le reste de cette division à la variable. Pour plus d'informations, voir la page sur l'opérateur {{jsxref("Opérateurs/Opérateurs_arithmétiques", "reste", "#Reste_(.25)", 1)}}.</p>

<h4 id="Syntaxe_6">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x %= y
<strong>Signification :</strong>  x  = x % y
</pre>

<h4 id="Exemples_6">Exemples</h4>

<pre class="brush: js">// Si on a la variable suivante :
//  truc = 5;

truc %= 2;      // 1
truc %= "toto"; // NaN
truc %= 0;      // NaN
</pre>

<h3 id="Affectation_après_exponentiation"><a id="Exponentiation" name="Exponentiation">Affectation après exponentiation</a></h3>

<p>L'opérateur d'affectation après exponentiation renvoie le résultat de l'élévation du premier opérande à la puissance donnée par le second opérande. Pour plus de détails, voir la page sur {{jsxref("Opérateurs/Opérateurs_arithmétiques", "l'opérateur d'exponentiation", "#Exponentiation_(**)", 1)}} for more details.</p>

<h4 id="Syntaxe_7">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x **= y
<strong>Signification :</strong>  x  = x ** y
</pre>

<h4 id="Exemples_7">Exemples</h4>

<pre class="brush: js">// Si on a la variable :
//  toto = 5

toto **= 2      // 25
toto **= "truc" // NaN</pre>

<h3 id="Affectation_après_décalage_à_gauche"><a name="Left_shift_assignment">Affectation après décalage à gauche</a></h3>

<p>Cet opérateur permet de décaler un nombre donné de bits vers la gauche, le résultat de l'opération est ensuite affecté à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_binaires", "décalage à gauche", "#.3C.3C_.28d.C3.A9calage_.C3.A0_gauche.29", 1)}} pour plus d'informations.</p>

<h4 id="Syntaxe_8">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x &lt;&lt;= y
<strong>Signification :</strong>  x   = x &lt;&lt; y
</pre>

<h4 id="Exemples_8">Exemples</h4>

<pre class="brush: js">var toto = 5; //  (00000000000000000000000000000101)
toto &lt;&lt;= 2;   // 20 (00000000000000000000000000010100)
</pre>

<h3 id="Affectation_après_décalage_à_droite"><a name="Right_shift_assignment">Affectation après décalage à droite</a></h3>

<p>Cet opérateur permet de décaler un nombre donné de bits vers la droite, le résultat de l'opération est ensuite affecté à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_binaires", "décalage à droite", "##.3E.3E_.28d.C3.A9calage_.C3.A0_droite_avec_propagation_du_signe.29", 1)}} pour plus d'informations.</p>

<h4 id="Syntaxe_9">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x &gt;&gt;= y
<strong>Signification :</strong>  x   = x &gt;&gt; y
</pre>

<h4 id="Exemples_9">Exemples</h4>

<pre class="brush: js">var toto = 5; //   (00000000000000000000000000000101)
toto &gt;&gt;= 2;   // 1 (00000000000000000000000000000001)

var toto -5; //    (-00000000000000000000000000000101)
toto &gt;&gt;= 2;  // -2 (-00000000000000000000000000000010)
</pre>

<h3 id="Affectation_après_décalage_à_droite_non-signé"><a name="Unsigned_right_shift_assignment">Affectation après décalage à droite non-signé</a></h3>

<p>Cet opérateur permet de décaler le contenu de la variable d'un nombre de bits donné pour ensuite affecter le résultat à la variable. Voir la page sur l'opérateur de {{jsxref("Opérateurs/Opérateurs_binaires", "décalage à droite non-signé", "#.3E.3E.3E_.28d.C3.A9calage_.C3.A0_droite_avec_insertion_de_z.C3.A9ros.29", 1)}} pour plus de détails.</p>

<h4 id="Syntaxe_10">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x &gt;&gt;&gt;= y
<strong>Signification :</strong>  x    = x &gt;&gt;&gt; y
</pre>

<h4 id="Exemples_10">Exemples</h4>

<pre class="brush: js">var toto = 5; //   (00000000000000000000000000000101)
toto &gt;&gt;&gt;= 2;  // 1 (00000000000000000000000000000001)

var toto = -5; // (-00000000000000000000000000000101)
toto &gt;&gt;&gt;= 2; // 1073741822 (00111111111111111111111111111110)</pre>

<h3 id="Affectation_après_ET_binaire"><a name="Bitwise_AND_assignment">Affectation après ET binaire</a></h3>

<p>Cet opérateur effectue une opération ET binaire sur les deux opérandes et affecte le résultat de l'opération à la variable (l'opérande gauche). Pour plus d'informations sur cette opération, voir la page sur l'opérateur {{jsxref("Opérateurs/Opérateurs_binaires", "binaire ET", "#&amp;_.28ET_binaire.29", 1)}}.</p>

<h4 id="Syntaxe_11">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x &amp;= y
<strong>Signification :</strong>  x  = x &amp; y
</pre>

<h4 id="Exemple">Exemple</h4>

<pre class="brush: js">var truc = 5;
// 5:     00000000000000000000000000000101
// 2:     00000000000000000000000000000010
truc &amp;= 2; // 0
</pre>

<h3 id="Affectation_après_OU_exclusif_(XOR)_binaire"><a name="Bitwise_XOR_assignment">Affectation après OU exclusif (<em>XOR</em>) binaire</a></h3>

<p>Cet opérateur utilise une représentation binaire des deux opérandes, effectue une opération binaire avec un OU exclusif et affecte le résultat à la variable. Pour plus d'informations sur cette opération, voir la page sur l'opérateur {{jsxref("Opérateurs/Opérateurs_binaires", "binaire OU exclusif", "#.5E_.28XOR_binaire.29", 1)}}.</p>

<h4 id="Syntaxe_12">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x ^= y
<strong>Signification :</strong>  x  = x ^ y
</pre>

<h4 id="Exemple_2">Exemple</h4>

<pre class="brush: js">var toto = 5;
toto ^= 2; // 7
// 5: 00000000000000000000000000000101
// 2: 00000000000000000000000000000010
// -----------------------------------
// 7: 00000000000000000000000000000111
</pre>

<h3 id="Affectation_après_OU_binaire"><a name="Bitwise_OR_assignment">Affectation après OU binaire</a></h3>

<p>Cet opérateur utilise une représentation binaire des deux opérandes, effectue un OU logique binaire entre ces deux variables et affecte le résultat de l'opération à la variable. Pour plus de détails sur cette opération, voir la page sur l'opérateur {{jsxref("Opérateurs/Opérateurs_binaires", "OU binaire", "#|_.28OU_binaire.29", 1)}}.</p>

<h4 id="Syntaxe_13">Syntaxe</h4>

<pre class="syntaxbox"><strong>Opérateur :</strong> x |= y
<strong>Signification :</strong>  x  = x | y
</pre>

<h4 id="Exemple_3">Exemple</h4>

<pre class="brush: js">var toto = 5;
toto |= 2; // 7
// 5: 00000000000000000000000000000101
// 2: 00000000000000000000000000000010
// -----------------------------------
// 7: 00000000000000000000000000000111
</pre>

<h2 id="Exemples_11">Exemples</h2>

<h3 id="Opérande_gauche_utilisé_avec_un_autre_opérateur_d'affectation">Opérande gauche utilisé avec un autre opérateur d'affectation</h3>

<p>Dans certains cas, l'opérateur d'affectation (par exemple<code> x += y</code>) n'est pas identique à l'expression développée correspondante (respectivement <code>x = x + y</code>). Lorsque l'opérande gauche contient lui-même un opérateur d'affectation, l'opérande gauche n'est évalué qu'une fois. Ainsi :</p>

<pre class="brush: js">a[i++] += 5         // i est évalué une fois
a[i++] = a[i++] + 5 // i est évalué deux fois
</pre>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">État</th>
   <th scope="col">Commentaires</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-assignment-operators', 'Assignment operators')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES2015', '#sec-assignment-operators', 'Assignment operators')}}</td>
   <td>{{Spec2('ES2015')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-11.13', 'Assignment operators')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('ES1', '#sec-11.13', 'Assignment operators')}}</td>
   <td>{{Spec2('ES1')}}</td>
   <td>Définition initiale</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<div class="hidden">Ce tableau de compatibilité a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</div>

<p>{{Compat("javascript.operators.assignment")}}</p>

<h2 id="Voir_aussi">Voir aussi</h2>

<ul>
 <li><a href="/fr/docs/Web/JavaScript/Reference/Opérateurs/Opérateurs_arithmétiques">Les opérateurs arithmétiques</a></li>
</ul>