Code has been added to clipboard!

Methods of Creating JavaScript Array

Example
var cars = new Array(); // Bad
var cars = []; // Good