... and finally the magic of LINQ:
default
from(...)
From(...)
asEnumerable(...)
All these methods are doing exactly the same thing. In fact they are aliaces of the same method. They convert any iterable sequence (one that implements [Symbol.iterator]) into Enumerable object.
Example: