aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/operators/remainder_assignment/index.md
blob: 87a47940d92bc1c7232823794f755923f0912a77 (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
---
title: Affectation après reste (%=)
slug: Web/JavaScript/Reference/Operators/Remainder_assignment
tags:
  - Assignment operator
  - JavaScript
  - Language feature
  - Operator
  - Reference
browser-compat: javascript.operators.remainder_assignment
translation-of: Web/JavaScript/Reference/Operators/Remainder_assignment
---
<div>{{jsSidebar("Operators")}}</div>

<p>L'opérateur de reste et d'affectation (<code>%=</code>) calcule le reste de la division de l'opérande gauche par l'opérande droit et affecte ce résultat à la variable représentée par l'opérande gauche.</p>

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

<h2 id="syntax">Syntaxe</h2>

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

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

<h3 id="using_remainder_assignment">Utiliser l'opérateur de reste et d'affectation</h3>

<pre class="brush: js">
let truc = 5;
truc %= 2;      // 1
truc %= 'toto'; // NaN
truc %= 0;      // NaN
</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/Remainder">L'opérateur de reste</a></li>
</ul>