Linked Questions

Popular Questions

Array() vs new Array()

Asked by At

What is the difference (if there is any) between

x = Array()

and

x = new Array()

Which one should I use?

Related Questions