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

convert to the new dot handling logic on jsxref #36663

Merged
merged 1 commit into from
Nov 5, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions files/en-us/web/javascript/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ If you are new to JavaScript, start with the [guide](/en-US/docs/Web/JavaScript/
- {{jsxref("Operators/Property_accessors", "Property accessors", "", 1)}}
- {{jsxref("Operators/Optional_chaining", "?.")}}
- {{jsxref("Operators/new", "new")}}
- {{jsxref("Operators/new%2Etarget", "new.target")}}
- {{jsxref("Operators/import%2Emeta", "import.meta")}}
- {{jsxref("Operators/new.target", "new.target")}}
- {{jsxref("Operators/import.meta", "import.meta")}}
- {{jsxref("Operators/super", "super")}}
- {{jsxref("Operators/import", "import()")}}

Expand Down
4 changes: 2 additions & 2 deletions files/en-us/web/javascript/reference/operators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ Left values are the destination of an assignment.
- : The optional chaining operator returns `undefined` instead of causing an error if a reference is [nullish](/en-US/docs/Glossary/Nullish) ([`null`](/en-US/docs/Web/JavaScript/Reference/Operators/null) or [`undefined`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined)).
- {{jsxref("Operators/new", "new")}}
- : The `new` operator creates an instance of a constructor.
- {{jsxref("Operators/new%2Etarget", "new.target")}}
- {{jsxref("Operators/new.target", "new.target")}}
- : In constructors, `new.target` refers to the constructor that was invoked by {{jsxref("Operators/new", "new")}}.
- {{jsxref("Operators/import%2Emeta", "import.meta")}}
- {{jsxref("Operators/import.meta", "import.meta")}}
- : An object exposing context-specific metadata to a JavaScript module.
- {{jsxref("Operators/super", "super")}}
- : The `super` keyword calls the parent constructor or allows accessing properties of the parent object.
Expand Down