we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "array of in javascript"
Yannik
17 Jan 2017
1Array.of(7);       // [7]
2Array.of(1, 2, 3); // [1, 2, 3]
3
4Array(7);          // [ , , , , , , ]
5Array(1, 2, 3);    // [1, 2, 3]
6
Alex
27 Feb 2016
1String[][] arrays = new String[][] { array1, array2, array3, array4, array5 };
2