Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update Exponentiation operator MDN link #15960

Merged
merged 2 commits into from Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/src/_data/further_reading_links.json
Expand Up @@ -684,5 +684,12 @@
"logo": "//thomas.tuerke.net/images/tmtlogo.ico",
"title": "Coding in Style",
"description": "Thomas M. Tuerke topical weblog"
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation": {
"domain": "developer.mozilla.org",
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation",
"logo": "https://developer.mozilla.org/favicon-48x48.cbbd161b.png",
"title": "Exponentiation (**) - JavaScript | MDN",
"description": "The exponentiation operator (**) returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow, except it also accepts BigInts as operands."
}
}
2 changes: 1 addition & 1 deletion docs/src/rules/prefer-exponentiation-operator.md
Expand Up @@ -4,7 +4,7 @@ layout: doc
edit_link: https://github.com/eslint/eslint/edit/main/docs/src/rules/prefer-exponentiation-operator.md
rule_type: suggestion
further_reading:
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Exponentiation
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation
- https://bugs.chromium.org/p/v8/issues/detail?id=5848
---

Expand Down