Skip to content

Commit

Permalink
Docs: add exponentiation operators to operator-assignment documentati…
Browse files Browse the repository at this point in the history
…on (#13577)
  • Loading branch information
mdjermanovic committed Aug 19, 2020
1 parent 2f27836 commit b487164
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/rules/operator-assignment.md
Expand Up @@ -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
Expand Down

0 comments on commit b487164

Please sign in to comment.