What is the purpose of the Array.from() method in JavaScript?
Array.from()
Creates a new array with a specific length and initial values.
Creates a new array by concatenating two or more arrays or values.
Creates a new array by copying the values of an existing array or array-like object.
Creates a new array with the results of calling a provided function on every element in the array.