Use array and object literals in JavaScript
Avoid using array and object constructors using new
, instead go for the array or object literal.
// Avoid
var arr = new Array();
var obj = new Object();
// Use
var arr = [];
var obj = {};
Written by Jeroen Ransijn
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#