MCQ
Which method creates a new array from an array-like object?
JavaScript
A Array.from()
B Array.of()
C Array.create()
D Array.new()
Explanation

Array.from() creates a new array from an iterable or array-like object.