JS Arrays
Difference between : Array() and [] , Array[integer]
Array[t]- It is used to access the t index of the array.
Array(t)- This is like passing t in the constructor of Array. It will generate an array with t elements in it. [ t undefined spaces it wil...
jsdev195.hashnode.dev2 min read