02:09
<sideshowbarker>

Is there anything different about lists than sequences which makes it better on lists?

What’s the distinction between a list and sequence? Is that distinction clear in most languages, or is it more distinct in C#?

02:15
<sideshowbarker>
Or just don't use forEach... for-of is just way better IMO.
Yeah I think I probably should make a further update to the Examples section of the MDN Array doc in my https://github.com/mdn/content/pull/12781 PR to state that.
02:55
<ljharb>
In js, a list and a sequence are both just a conceptual ordered list of things; usually represented by an array
02:56
<ljharb>
as for forEach vs for-of, opinions vary widely on that :-)