I am reading the JavaScript The Definitive Guide and it says:
The easiest way to create an array is with an array literal
But then he says:
Another way to create an array is with the Array () constructor.
My question is, no matter how we declare the array in javascript, does it continue to be an object? thanks
source
share