diff --git a/files/en-us/web/javascript/reference/global_objects/asynciterator/symbol.asynciterator/index.md b/files/en-us/web/javascript/reference/global_objects/asynciterator/symbol.asynciterator/index.md index a1ced128c977cf3..ac719188547c1d2 100644 --- a/files/en-us/web/javascript/reference/global_objects/asynciterator/symbol.asynciterator/index.md +++ b/files/en-us/web/javascript/reference/global_objects/asynciterator/symbol.asynciterator/index.md @@ -9,8 +9,6 @@ browser-compat: javascript.builtins.AsyncIterator.@@asyncIterator The **`[Symbol.asyncIterator]()`** method of {{jsxref("AsyncIterator")}} instances implements the [async iterable protocol](/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols) and allows built-in async iterators to be consumed by most syntaxes expecting async iterables, such as [`for await...of`](/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) loops. It returns the value of [`this`](/en-US/docs/Web/JavaScript/Reference/Operators/this), which is the async iterator object itself. -{{EmbedInteractiveExample("pages/js/map-prototype-@@iterator.html")}} - ## Syntax ```js-nolint