Convert Array-like objects, Array.prototype.slice or Array.from
I know there are two ways to convert Array-like objects to Array.
Array.prototype.slice.call(arguments)Array.from(arguments)
I wonder what's the differences between them , which one should I use to convert Array-like objects.