Skip to content

Commit

Permalink
Make see also match guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena committed Aug 23, 2023
1 parent 60968a0 commit 96b5b3b
Show file tree
Hide file tree
Showing 46 changed files with 92 additions and 126 deletions.
6 changes: 2 additions & 4 deletions files/en-us/web/javascript/data_structures/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,5 @@ In all cases, `[@@toPrimitive]()`, if present, must be callable and return a pri

## See also

- [JavaScript Data Structures and Algorithms by Oleksii Trekhleb](https://github.com/trekhleb/javascript-algorithms)
- [Nicholas Zakas collection of common data structure and common algorithms in JavaScript.](https://github.com/humanwhocodes/computer-science-in-javascript)
- [Search Tre(i)es implemented in JavaScript](https://github.com/monmohan/dsjslib)
- [Data Types and Values in the ECMAScript specification](https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html)
- [JavaScript Data Structures and Algorithms](https://github.com/trekhleb/javascript-algorithms) by Oleksii Trekhleb
- [Computer Science in JavaScript](https://github.com/humanwhocodes/computer-science-in-javascript) by Nicholas C. Zakas
Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,4 @@ console.log(f2b(nan2)); // Uint8Array(8) [1, 0, 0, 0, 0, 0, 248, 127]

## See also

- [JS Comparison Table](https://dorey.github.io/JavaScript-Equality-Table/)
- [JS Comparison Table](https://dorey.github.io/JavaScript-Equality-Table/) by dorey
4 changes: 2 additions & 2 deletions files/en-us/web/javascript/event_loop/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,5 @@ Legacy exceptions exist like `alert` or synchronous XHR, but it is considered go

## See also

- [Event loops in the HTML standard](https://html.spec.whatwg.org/multipage/webappapis.html#event-loops)
- [Node.js Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#what-is-the-event-loop)
- [Event loops](https://html.spec.whatwg.org/multipage/webappapis.html#event-loops) in the HTML standard
- [The Node.js Event Loop, Timers, and `process.nextTick()`](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#what-is-the-event-loop) in the Node.js docs
8 changes: 4 additions & 4 deletions files/en-us/web/javascript/guide/modules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -979,9 +979,9 @@ Here are a few tips that may help you if you are having trouble getting your mod

## See also

- [Using JavaScript modules on the web](https://v8.dev/features/modules#mjs), by Addy Osmani and Mathias Bynens
- [ES modules: A cartoon deep-dive](https://hacks.mozilla.org/2018/03/es-modules-a-cartoon-deep-dive/), Hacks blog post by Lin Clark
- [ES6 in Depth: Modules](https://hacks.mozilla.org/2015/08/es6-in-depth-modules/), Hacks blog post by Jason Orendorff
- [Exploring JS: Modules](https://exploringjs.com/es6/ch_modules.html), Book by Axel Rauschmayer
- [JavaScript modules](https://v8.dev/features/modules) on v8.dev (2018)
- [ES modules: A cartoon deep-dive](https://hacks.mozilla.org/2018/03/es-modules-a-cartoon-deep-dive/) on hacks.mozilla.org (2018)
- [ES6 in Depth: Modules](https://hacks.mozilla.org/2015/08/es6-in-depth-modules/) on hacks.mozilla.org (2015)
- [Exploring JS, Ch.16: Modules](https://exploringjs.com/es6/ch_modules.html) by Dr. Axel Rauschmayer

{{Previous("Web/JavaScript/Guide/Meta_programming")}}
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,8 @@ console.log(ripeOranges); // [ 'ripe orange A', 'ripe orange C' ]

## See also

- [Regular expressions guide](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)

- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)

- [Regular expressions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)
- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)
- [The `RegExp()` constructor](/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)
- [Assertions in the ECMAScript specification](https://tc39.es/ecma262/multipage/text-processing.html#sec-assertion)
Original file line number Diff line number Diff line change
Expand Up @@ -370,11 +370,8 @@ console.log("Number of vowels:", aliceExcerpt.match(regexpVowels).length);

## See also

- [Regular expressions guide](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)

- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)

- [Regular expressions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)
- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)
- [The `RegExp()` constructor](/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)
- [CharacterClass in the ECMAScript specification](https://tc39.es/ecma262/multipage/text-processing.html#sec-characterclass)
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,8 @@ console.log(lines.join("\n"));

## See also

- A polyfill of [`RegExp` named capture groups](https://github.com/zloirock/core-js#ecmascript-string-and-regexp) is available in [`core-js`](https://github.com/zloirock/core-js)
- [Regular expressions guide](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)

- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)

- [Regular expressions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)
- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Quantifiers](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Quantifiers)
- [The `RegExp()` constructor](/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)
- [ClassRanges in the ECMAScript specification](https://tc39.es/ecma262/multipage/text-processing.html#sec-classranges)
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,8 @@ console.log(text.match(nonGreedyRegexp));

## See also

- [Regular expressions guide](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)

- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)

- [Regular expressions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions)
- [Character classes](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Character_classes)
- [Assertions](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Assertions)
- [Groups and backreferences](/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Groups_and_backreferences)
- [The `RegExp()` constructor](/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp)
- [Quantifiers in the ECMAScript specification](https://tc39.es/ecma262/multipage/text-processing.html#sec-quantifier)
5 changes: 2 additions & 3 deletions files/en-us/web/javascript/guide/typed_arrays/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,8 @@ const normalArray = Array.prototype.slice.call(typedArray);

## See also

- [Getting `ArrayBuffer`s or typed arrays from Base64-encoded strings](/en-US/docs/Glossary/Base64#appendix_decode_a_base64_string_to_uint8array_or_arraybuffer)
- [Faster Canvas Pixel Manipulation with Typed Arrays](https://hacks.mozilla.org/2011/12/faster-canvas-pixel-manipulation-with-typed-arrays/)
- [Typed Arrays: Binary Data in the Browser](https://web.dev/webgl-typed-arrays/)
- [Faster Canvas Pixel Manipulation with Typed Arrays](https://hacks.mozilla.org/2011/12/faster-canvas-pixel-manipulation-with-typed-arrays/) on hacks.mozilla.org (2011)
- [Typed arrays - Binary data in the browser](https://web.dev/webgl-typed-arrays/) on web.dev (2012)
- [Endianness](/en-US/docs/Glossary/Endianness)

{{PreviousNext("Web/JavaScript/Guide/Using_promises", "Web/JavaScript/Guide/Iterators_and_generators")}}
10 changes: 4 additions & 6 deletions files/en-us/web/javascript/guide/using_promises/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -502,12 +502,10 @@ If you think microtasks may help solve this problem, see the [microtask guide](/

## See also

- {{jsxref("Promise.prototype.then()")}}
- [`async`/`await`](/en-US/docs/Web/JavaScript/Reference/Statements/async_function)
- {{jsxref("Promise")}}
- {{jsxref("Statements/async_function", "async function")}}
- {{jsxref("Operators/await", "await")}}
- [Promises/A+ specification](https://promisesaplus.com/)
- [Venkatraman.R - JS Promise (Part 1, Basics)](https://medium.com/@ramsunvtech/promises-of-promise-part-1-53f769245a53)
- [Venkatraman.R - JS Promise (Part 2 - Using Q.js, When.js and RSVP.js)](https://medium.com/@ramsunvtech/js-promise-part-2-q-js-when-js-and-rsvp-js-af596232525c#.dzlqh6ski)
- [Venkatraman.R - Tools for Promises Unit Testing](https://tech.io/playgrounds/11107/tools-for-promises-unittesting/introduction)
- [Nolan Lawson: We have a problem with promises — Common mistakes with promises](https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html)
- [We have a problem with promises](https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html) on pouchdb.com (2015)

{{PreviousNext("Web/JavaScript/Guide/Using_classes", "Web/JavaScript/Guide/Typed_arrays")}}
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ For more information about comparison operators, see [equality operators](/en-US

## See also

- To dive deeper, read about [Inheritance and the prototype chain](/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain).
- To learn about classes (an alternative way to create objects), read the [JavaScript classes](/en-US/docs/Web/JavaScript/Reference/Classes) reference.
- [Inheritance and the prototype chain](/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain)
- [Classes](/en-US/docs/Web/JavaScript/Reference/Classes)

{{PreviousNext("Web/JavaScript/Guide/Regular_expressions", "Web/JavaScript/Guide/Using_classes")}}
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,6 @@ PrivateConstructor.create(); // PrivateConstructor {}
- [Classes](/en-US/docs/Web/JavaScript/Reference/Classes)
- [Public class fields](/en-US/docs/Web/JavaScript/Reference/Classes/Public_class_fields)
- {{jsxref("Statements/class", "class")}}
- [Private Syntax FAQ](https://github.com/tc39/proposal-class-fields/blob/main/PRIVATE_SYNTAX_FAQ.md)
- [Private Syntax FAQ](https://github.com/tc39/proposal-class-fields/blob/main/PRIVATE_SYNTAX_FAQ.md) in the TC39 class-fields proposal
- [The semantics of all JS class elements](https://rfrn.org/~shu/2018/05/02/the-semantics-of-all-js-class-elements.html) by Shu-yu Guo (2018)
- [Public and private class fields](https://v8.dev/features/class-fields) on v8.dev (2018)
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ console.log(getDPrivateField(new D("private"))); // 'private'
- {{jsxref("Classes/static", "static")}}
- {{jsxref("Statements/class", "class")}}
- [Class static initialization blocks](https://v8.dev/features/class-static-initializer-blocks) on v8.dev (2021)
- [ES2022 feature: class static initialization blocks](https://2ality.com/2021/09/class-static-block.html) on 2ality.com (2021)
- [ES2022 feature: class static initialization blocks](https://2ality.com/2021/09/class-static-block.html) by Dr. Axel Rauschmayer (2021)
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ X-SourceMap: /path/to/file.js.map

## See also

- [How to use a source map – Firefox Tools documentation](https://firefox-source-docs.mozilla.org/devtools-user/debugger/how_to/use_a_source_map/index.html)
- [Introduction to source maps (2012)](https://developer.chrome.com/blog/sourcemaps/)
- [Use a source map](https://firefox-source-docs.mozilla.org/devtools-user/debugger/how_to/use_a_source_map/index.html) in the Firefox source docs
- [Introduction to JavaScript source maps](https://developer.chrome.com/blog/sourcemaps/) on developer.chrome.com (2012)
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ function getId(user, fallback) {
## See also
- [Original discussion of nullish coalescing precedence](https://github.com/tc39/proposal-nullish-coalescing/issues/15)
- [Issue about nullish coalescing precedence](https://github.com/tc39/proposal-nullish-coalescing/issues/15) in the TC39 nullish-coalescing proposal
- [Nullish coalescing operator](/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing)
- [Operator precedence](/en-US/docs/Web/JavaScript/Reference/Operators/Operator_precedence)
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,5 @@ JSON.stringify(notCircularReference, getCircularReplacer());

## See also

- {{jsxref("JSON.stringify")}}
- [cycle.js](https://github.com/douglascrockford/JSON-js/blob/master/cycle.js)
– Introduces two functions, `JSON.decycle` and
`JSON.retrocycle`, which makes it possible to encode and decode cyclical
structures and dags into an extended and retrocompatible JSON format.
- {{jsxref("JSON.stringify()")}}
- [cycle.js](https://github.com/douglascrockford/JSON-js/blob/master/cycle.js) on GitHub
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ non-standard, hard to optimize and potentially a performance-harmful feature.

## Examples

### Deprecated function.caller or arguments.callee.caller
### Deprecated function.caller or arguments.callee

{{jsxref("Function.prototype.caller")}} and
[`arguments.callee.caller`](/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee)
[`arguments.callee`](/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee)
are deprecated (see the reference articles for more information).

```js example-bad
Expand Down Expand Up @@ -83,5 +83,5 @@ console.log(`returned: ${g.arguments}`);
- [Deprecated and obsolete features](/en-US/docs/Web/JavaScript/Reference/Deprecated_and_obsolete_features)
- [Strict mode](/en-US/docs/Web/JavaScript/Reference/Strict_mode)
- {{jsxref("Function.prototype.arguments")}}
- {{jsxref("Function.prototype.caller")}} and
[`arguments.callee.caller`](/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee)
- {{jsxref("Function.prototype.caller")}}
- [`arguments.callee`](/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee)
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ SourceMap: /path/to/file.js.map

## See also

- [How to use a source map – Firefox Tools documentation](https://firefox-source-docs.mozilla.org/devtools-user/debugger/how_to/use_a_source_map/index.html)
- [Introduction to source maps (2012)](https://developer.chrome.com/blog/sourcemaps/)
- [Use a source map](https://firefox-source-docs.mozilla.org/devtools-user/debugger/how_to/use_a_source_map/index.html) in the Firefox source docs
- [Introduction to JavaScript source maps](https://developer.chrome.com/blog/sourcemaps/) on developer.chrome.com (2012)
- {{HTTPHeader("SourceMap")}}
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,4 @@ const foo = life1;
## See also

- [Lexical grammar](/en-US/docs/Web/JavaScript/Reference/Lexical_grammar)
- [Variables](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#variables)
in the [JavaScript Guide](/en-US/docs/Web/JavaScript/Guide)
- [Grammar and types § Variables](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#variables)
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,4 @@ for (let i = 2; i < arr.length; i++) {

- [`for...in`](/en-US/docs/Web/JavaScript/Reference/Statements/for...in)
- [`for...of`](/en-US/docs/Web/JavaScript/Reference/Statements/for...of)
– also disallows an initializer in both strict and non-strict mode.
- [`for`](/en-US/docs/Web/JavaScript/Reference/Statements/for)
preferred for array iteration, allows to define an initializer.
- [`for`](/en-US/docs/Web/JavaScript/Reference/Statements/for)
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ for (let value of iterable) {
## See also

- [`for...of`](/en-US/docs/Web/JavaScript/Reference/Statements/for...of)
- [`for...in`](/en-US/docs/Web/JavaScript/Reference/Statements/for...in) – disallows an initializer in strict mode as well ([SyntaxError: for-in loop head declarations may not have initializers](/en-US/docs/Web/JavaScript/Reference/Errors/Invalid_for-in_initializer))
- [`for`](/en-US/docs/Web/JavaScript/Reference/Statements/for) – allows to define an initializer when iterating.
- [`for...in`](/en-US/docs/Web/JavaScript/Reference/Statements/for...in)
- [`for`](/en-US/docs/Web/JavaScript/Reference/Statements/for)
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ const arr = [1, 2, 3, 4, 5];

## See also

- [Good variable names](https://wiki.c2.com/?GoodVariableNames)
- [Lexical grammar](/en-US/docs/Web/JavaScript/Reference/Lexical_grammar)
- {{jsxref("Statements/var", "var")}}
- [Variable declarations in the JavaScript Guide](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#declarations)
- [Grammar and types § Variable declarations](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#declarations)
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ function g(arg) {
- {{jsxref("Statements/let", "let")}}
- {{jsxref("Statements/const", "const")}}
- {{jsxref("Statements/var", "var")}}
- [Declaring variables](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#declarations) in the [JavaScript Guide](/en-US/docs/Web/JavaScript/Guide)
- [Grammar and types § Declaring variables](/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#declarations)
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ class DocArchiver {}

## See also

- [Good variable names](https://wiki.c2.com/?GoodVariableNames)
- [Lexical grammar](/en-US/docs/Web/JavaScript/Reference/Lexical_grammar)
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,4 @@ function g() {

## See also

- {{jsxref("Statements/return", "Automatic Semicolon Insertion",
"#Automatic_Semicolon_Insertion", 1)}}
- [`return` § Automatic semicolon insertion](/en-US/docs/Web/JavaScript/Reference/Statements/return#automatic_semicolon_insertion)
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ This also makes the code's intent much clearer to other readers.

## See also

- [Original discussion of exponentiation operator precedence](https://esdiscuss.org/topic/exponentiation-operator-precedence)
- [Exponentiation (`**`)](/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation)
- [Operator precedence](/en-US/docs/Web/JavaScript/Reference/Operators/Operator_precedence)
- [Original discussion of exponentiation operator precedence](https://esdiscuss.org/topic/exponentiation-operator-precedence) on esdiscuss.org
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,4 @@ console.log(
- {{jsxref("Statements/class", "class")}}
- [Property accessors](/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors)
- [Incompatible ES5 change: literal getter and setter functions must now have exactly zero or one arguments](https://whereswalden.com/2010/08/22/incompatible-es5-change-literal-getter-and-setter-functions-must-now-have-exactly-zero-or-one-arguments/) by Jeff Walden (2010)
- [More SpiderMonkey changes: ancient, esoteric, very rarely used syntax for creating getters and setters is being removed](https://whereswalden.com/2010/04/16/more-spidermonkey-changes-ancient-esoteric-very-rarely-used-syntax-for-creating-getters-and-setters-is-being-removed/) by Jeff Walden (2010)
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,4 @@ console.log(obj.baz); // "baz"
- {{jsxref("Statements/class", "class")}}
- [Property accessors](/en-US/docs/Web/JavaScript/Reference/Operators/Property_accessors)
- [Incompatible ES5 change: literal getter and setter functions must now have exactly zero or one arguments](https://whereswalden.com/2010/08/22/incompatible-es5-change-literal-getter-and-setter-functions-must-now-have-exactly-zero-or-one-arguments/) by Jeff Walden (2010)
- [More SpiderMonkey changes: ancient, esoteric, very rarely used syntax for creating getters and setters is being removed](https://whereswalden.com/2010/04/16/more-spidermonkey-changes-ancient-esoteric-very-rarely-used-syntax-for-creating-getters-and-setters-is-being-removed/) by Jeff Walden (2010)
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ add(10).then((v) => {
## See also

- {{jsxref("Statements/async_function", "async function")}}
- {{jsxref("AsyncFunction")}} object
- {{jsxref("AsyncFunction")}}
- {{jsxref("Operators/await", "await")}}
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,9 @@ x(6)

## See also

- {{jsxref("Statements/async_function*", "async function*")}} statement
- {{jsxref("AsyncGeneratorFunction")}} object
- {{jsxref("Statements/async_function*", "async function*")}}
- {{jsxref("AsyncGeneratorFunction")}}
- [The Iterator protocol](/en-US/docs/Web/JavaScript/Reference/Iteration_protocols)
- {{jsxref("GeneratorFunction")}} object
- {{jsxref("Operators/yield", "yield")}}
- {{jsxref("Operators/yield*", "yield*")}}
- {{jsxref("Function")}} object
- {{jsxref("Functions", "Functions", "", 1)}}
Loading

0 comments on commit 96b5b3b

Please sign in to comment.