From b487164d01dd0bf66fdf2df0e374ce1c3bdb0339 Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Thu, 20 Aug 2020 00:07:24 +0200 Subject: [PATCH] Docs: add exponentiation operators to operator-assignment documentation (#13577) --- docs/rules/operator-assignment.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/rules/operator-assignment.md b/docs/rules/operator-assignment.md index 570f57c655c..977edfd34c5 100644 --- a/docs/rules/operator-assignment.md +++ b/docs/rules/operator-assignment.md @@ -10,6 +10,7 @@ JavaScript provides shorthand operators that combine variable assignment and som x *= y | x = x * y x /= y | x = x / y x %= y | x = x % y + x **= y | x = x ** y x <<= y | x = x << y x >>= y | x = x >> y x >>>= y | x = x >>> y