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