JS

Arrays in JavaScript - Convert an array-like objec...

11.

How can you convert an array-like object into an array in JavaScript?

Using the spread syntax (...).

Using the Array.from() method.

Using the Array.prototype.slice() method.

Using the Array.prototype.map() method.