vote up 21 vote down star
18

I find that what not to do is a harder lesson to learn than what should be done.

From my experience, what separates an expert from an intermediate is the ability to select from among various seemingly equivalent ways of doing the same thing.

So, when it comes to JavaScript what kinds of things should you not do and why?

I'm able to find lots of these for Java, but since JavaScript's typical context (in a browser) is very different from Java's I'm curious to see what comes out.

flag

What little I've seen on it, the whole language is an anti-pattern. I'm constantly amazed that Sun didn't sue over the pollution of the "Java" brand. – Paul Tomblin Dec 18 '08 at 14:43
1  
@Paul: really? What's widely considered the best scripting language available? That's dynamic, extensible and has first class functions and the best closure implementation I've seen. You're trolling :/ – annakata Dec 18 '08 at 14:47
No, I'm not trolling. It looks messy and undisciplined to me. The only reason it's "considered the best scripting language available" is because it's the only scripting language available on every browser without installing plugins. – Paul Tomblin Dec 18 '08 at 14:51
4  
Highly recommend you read "Javascript: The Good Parts" for some perspective about JavaScript being "messy and undisciplined" -- the language has warts, but often enough, it's the script developers that are "messy and undisciplined", and they'd be like that in any language :) – Tony Arkles Mar 23 at 16:41
1  
The browser APIs != Javascript. Paul's negative comments about JS seem to be actually complaints about the browser APIs (ie their DOM APIs). As far as that is the case, I agree. Javascript is really let down by browser inconsistencies in their APIs. – thomasrutter May 4 at 0:21
show 8 more comments

8 Answers

vote up 4 vote down

The biggest for me is not understanding the JavaScript programming language itself.

  • Overusing object hierarchies and building very deep inheritance chains. Shallow hierarchies work fine in most cases in JS.
  • Not understanding prototype based object orientation, and instead building huge amounts of scaffolding to make JS behave like traditional OO languages.
  • Unnecessarily using OO paradigms when procedural / functional programming could be more concise and efficient.

Then there are those for the browser runtime:

  • Not using good established event patterns like event delegation or the observer pattern (pub/sub) to optimize event handling.
  • Making frequent DOM updates (like .appendChild in a loop), when the DOM nodes can be in memory and appended in one go. (HUGE performance benefit).
  • Overusing libraries for selecting nodes with complex selectors when native methods can be used (getElementById, getElementByTagName, etc.). This is becoming lesser of an issue these days, but it's worth mentioning.
  • Extending DOM objects when you expect third-party scripts to be on the same page as yours (you will end up clobbering each other's code).

And finally the deployment issues.

  • Not minifying your files.
  • Web-server configs - not gzipping your files, not caching them sensibly.

<plug> I've got some client-side optimization tips which cover some of the things I've mentioned above, and more, on my blog.</plug>

link|flag
vote up 7 vote down

Besides those already mentioned...

  • Using the for..in construct to iterate over arrays
    (iterates over array methods AND indices)

  • Using Javascript inline like <body onload="doThis();">
    (inflexible and prevents multiple event listeners)

  • Using the 'Function()' constructor
    (bad for the same reasons eval() is bad)

  • Passing strings instead of functions to setTimeout or setInterval
    (also uses eval() internally)

  • Relying on implicit statements by not using semicolons
    (bad habit to pick up, and can lead to unexpected behavior)

  • Using /* .. */ to block out lines of code
    (can interfere with regex literals, e.g.: /* /.*/ */)

    <evangelism> And of course, not using Prototype ;) </evangelism>

link|flag
Anyone know why i was marked down? I'm new and am not sure if I broke some sort of rule... – Triptych Dec 18 '08 at 19:22
I don't know. I've voted you up. I like most of your answers. – Allain Lalonde Dec 18 '08 at 19:36
Probably because you use Prototype instead of jQuery... it seems like the SO crowd is very jQuery biased? – Chris MacDonald Dec 18 '08 at 19:42
1  
@Chris. That would be ridiculous. I added a wink! – Triptych Dec 18 '08 at 21:05
Doesn't mean it isn't so ;) - personally I'd upvote you if you'd written "prototype" though :) – annakata Dec 18 '08 at 21:25
show 2 more comments
vote up 5 vote down

any use of 'with'

with (document.forms["mainForm"].elements) {
input1.value = "junk";
input2.value = "junk"; }

link|flag
I wonder if this will stop being an issue when we get better code analysis tools for Javascript – Allain Lalonde Dec 18 '08 at 15:22
strongly disagree with this, Crockford is wrong here – annakata Dec 18 '08 at 15:22
See here: stackoverflow.com/questions/61552/… for a discussion of "with"; IMHO, there's at least one valid use for it, probably more... but as a means of scope control, not a convenience for modifying object members. – Shog9 Dec 18 '08 at 17:51
vote up 2 vote down

Not using a community based framework to do repetitive tasks like DOM manipulation, event handling, etc.

link|flag
My personal choice would be jQuery, but the actual framework matters little. As long as it's not home grown. – Allain Lalonde Dec 18 '08 at 15:04
3  
I sort of disagree with this - Sometimes a special solution is better than a general one and I have quite a lot of my own JS which I believe superior to jQueries equivalent. Possible I should give this stuff to jQuery actually, but the point is the masses aren't always right. – annakata Dec 18 '08 at 15:10
then we'll agree to disagree. :) Even if your personal framework is a better match, the testing you'd have to do, you get for "free" by using a community based approach. – Allain Lalonde Dec 18 '08 at 15:20
2  
well not really, I've been dragging this chunk of code with me for 5 years now :) – annakata Dec 18 '08 at 15:21
1  
Dragging is an apt metaphor. :) – Allain Lalonde Jan 12 at 11:55
show 1 more comment
vote up 6 vote down
  • browser detection (instead of testing whether the specific methods/fields you want to use exist)
  • using alert() in most cases

see also Crockford's "Javascript: The Good Parts" for various other things to avoid. (edit: warning, he's a bit strict in some of his suggestions like the use of "===" over "==" so take them with whatever grain of salt works for you)

link|flag
yeah alert is pretty ugly :) – annakata Dec 18 '08 at 15:02
also I take issue with some of the things Crockford says (e.g his stance on with and continue) – annakata Dec 18 '08 at 15:10
the exception on browser detection is if the browser reports that it supports a method or property, but you know that the implementation is wrong/flawed. IE supports elem.setAttribute(name,value) but it certainly doesn't support it correctly. – scunliffe Dec 18 '08 at 15:23
@annakata: good point, i do too – Jason S Dec 18 '08 at 16:11
vote up 5 vote down

any reference to

document.all

in your code, unless it is within special code, just for IE to overcome an IE bug. (cough document.getElementById() cough)

link|flag
vote up 31 vote down

Language:

  • Namespace polluting by creating a large footprint of variables in the global context.

  • Binding event handlers in the form 'foo.onclick = myFunc' (inextensible, should be using attachEvent/addEventListener).

  • Using eval in almost any non-JSON context

  • Almost every use of document.write (use the DOM methods like document.createElement)

  • Prototyping against the Object object (BOOM!)

  • A small one this, but doing large numbers of string concats with '+' (creating an array and joining it is much more efficient)

  • Referring to the non-existent undefined constant

Design/Deployment:

  • (Generally) not providing noscript support.

  • Not packaging your code into a single resource

  • Putting inline (i.e. body) scripts near the top of the body (they block loading)

Ajax specific:

  • not indicating the start, end, or error of a request to the user

  • polling

  • passing and parsing XML instead of JSON or HTML (where appropriate)

edit: I keep thinking of more!

link|flag
On the last point in AJAX, the X stands for XML, If you aren't passing XML, you aren't even doing AJAX, you are doing AJAJSON, or maybe just AJAJ. I'm not sure what the difference is between passwing JSON and passing XML. – Kibbee Dec 18 '08 at 14:54
Yeah I know what the X stands for :) Alot of the time the A is false as well. It's just an unfortunate umbrella term for stuff a lot of us were doing ages ago. FYI the difference between JSON and XML is large, but critically JSON is lighter and is in a native format JS doesn't need to parse. – annakata Dec 18 '08 at 14:58
AJAX is now used as an umbrella term, like DHTML. Although strictly speaking you're correct. Anything that allows for Asynchronous communication with the server is AJAX in my book. – Allain Lalonde Dec 18 '08 at 14:59
@annakata: Why not post each of these as a separate answer. That way, you get more points and the best single answer floats to the top? – Allain Lalonde Dec 18 '08 at 15:23
Kibee, I think that is just a purely pedantic distinction. This is what everybody means by the term AJAX so I think it is just irrelevant. Just forget about AJAX as an acronym and think of it as the thing we all mean. – BobbyShaftoe Dec 18 '08 at 15:26
show 6 more comments
vote up 6 vote down

A few things right on top of my head. I'll edit this list when I think of more.

  • Don't pollute global namespace. Organize things in classes instead;
  • Don't omit 'var' for variables. That pollutes global namespace and might get you in trouble with other such scripts.
link|flag
Note that jslint (jslint.com) will issue a warning for both of these, so it can be helpful in cases where you've forgotten 'var' and are creating a global variable by accident, for example. – thomasrutter Apr 1 at 5:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.