--- title: Affectation après exponentiation (**=) slug: Web/JavaScript/Reference/Operators/Exponentiation_assignment tags: - Assignment operator - JavaScript - Language feature - Operator - Reference browser-compat: javascript.operators.exponentiation_assignment translation-of: Web/JavaScript/Reference/Operators/Exponentiation_assignment ---
{{jsSidebar("Operators")}}

L'opérateur d'exponentiation et d'affectation (**=) élève la valeur de la variable fournie par son opérande gauche à la puissance indiquée par son opérande droit puis affecte le résultat à la variable représentée par l'opérande gauche.

{{EmbedInteractiveExample("pages/js/expressions-exponentiation-assignment.html")}}

Syntaxe

Opérateur : x **= y
Signification :  x  = x ** y

Exemples

Utiliser l'opérateur d'exponentiation et d'affectation

let truc = 5;
truc **= 2;      // 25
truc **= 'toto'; // NaN

Spécifications

{{Specifications}}

Compatibilité des navigateurs

{{Compat}}

Voir aussi