In JSLint, it warns that
var x = new Array();
(That's not a real variable name) should be
var result = [];
What is wrong with the 1st syntax? What's the reasoning behind the suggestion?
|
|
In JSLint, it warns that
(That's not a real variable name) should be
What is wrong with the 1st syntax? What's the reasoning behind the suggestion?
|
|||
|
|
|
Crockford doesn't like |
||||
|
|
|
u earned 7 bytes ;) |
||
|
|
|
|
It's safer to use
In other words, |
||||||||||||||||
|
|
|
There's nothing wrong with the first syntax per se. In fact, on w3schools, it lists |
||||||
|
|
|
Nothing wrong with either form, but you usually see literals used wherever possible- var s='' is not more correct than var s=new String().... |
||
|
|