blob: 612aabe6b420e6846e7b51a59cbe61499c8e1e3b (
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
|
---
title: Affectation après division (/=)
slug: Web/JavaScript/Reference/Operators/Division_assignment
tags:
- Assignment operator
- JavaScript
- Language feature
- Operator
- Reference
browser-compat: javascript.operators.division_assignment
---
{{jsSidebar("Operators")}}
L'opérateur de division et d'affectation (`/=`) divise la variable fournie par l'opérande gauche par la valeur indiquée par l'opérande droit puis affecte le résultat à la variable représentée par l'opérande gauche.
{{EmbedInteractiveExample("pages/js/expressions-division-assignment.html")}}
## Syntaxe
```js
Opérateur : x /= y
Signification: x = x / y
```
## Exemples
### Utiliser l'opérateur de division et d'affectation
```js
let truc = 5;
truc /= 2; // 2.5
truc /= 2; // 1.25
truc /= 0; // Infinity
truc /= 'toto'; // NaN
```
## Spécifications
{{Specifications}}
## Compatibilité des navigateurs
{{Compat}}
## Voir aussi
- [Les opérateurs d'affectation dans le guide JavaScript](/fr/docs/Web/JavaScript/Guide/Expressions_and_Operators#assignment)
- [L'opérateur de division](/fr/docs/Web/JavaScript/Reference/Operators/Division)
|