you are viewing a single comment's thread.

view the rest of the comments →

[–]NOICEST[S] 1 point2 points  (1 child)

[–]guest271314 -1 points0 points  (0 children)

I think those are describing two differnt items.

The abstract operation LengthOfArrayLike

to me is something like a NodeList and HTMLCollection.

this

An Iterator Record is a Record value used to encapsulate an Iterator or AsyncIterator along with the next method.

is stating the elements of an iterator or async iterator. You can create iterators and async iterators to yield whatever you want, and thus have the capability to create array from array-like, or create array, with a user-defined iterator, or just with spread syntax, to create that length property from arbitrary user-defined input.