What are some good resources to learn best practices for Javascript? I'm mainly concerned about when something should be an object vs. when it should just be tracked in the DOM. Also I would like to better learn how to organize my code so it's easy to unit test.

link|improve this question
This. – Will Sep 2 '08 at 14:59
whiskey tango foxtrot? – Andy Ford May 20 '11 at 6:41
@AndyFord: Dude, this is from '08. It shames me, however, so now they're comments. Also, diamonds. – Will May 20 '11 at 13:41
feedback

9 Answers

up vote 31 down vote accepted

Seconding Javascript: The Good Parts and Resig's book Secrets of the Javascript Ninja.

Here are some tips for Javascript:

  • Don't pollute the global namespace (put all functions into objects/closures)
    • Take a look at YUI, it's a huge codebase with only 2 global objects: YAHOO and YAHOO_config
  • Use the Module pattern for singletons (http://yuiblog.com/blog/2007/06/12/module-pattern/)
  • Make your JS as reusable as possible (jQuery plugins, YUI modules, basic JS objects.) Don't write tons of global functions.
  • Don't forget to var your variables
  • Use JSlint : http://www.jslint.com/
  • If you need to save state, it's probably best to use objects instead of the DOM.
link|improve this answer
+1 thanks for the singleton link, it's the 1st time I understand how to do it in JS in an easy to read/understand article. – Marco Demaio May 20 '10 at 11:26
I like JavaScript: The Good Parts. However, I am not a fan of Crockford's style of coding, I think he's too bent on not making JS look like a typical OO language. I use it just to find out tricks of the language and apply to my own style, which attempts to emulate classical inheritance with JS, since it makes it more readable to people of all language backgrounds. – Juan Mendes Dec 16 '10 at 0:31
feedback

I liked JavaScript:The Good Parts by Douglas Crockford although it's focused entirely on the language and ignores the DOM altogether.

link|improve this answer
feedback

I disagree to the "use a framework" statement to some degree. Too many people use frameworks blindly and have little or no understanding of what's going on behind the curtains.

link|improve this answer
feedback

If you don't feel like reading you can watch this video:

JavaScript the good parts by Doug Crockford

alt text

link|improve this answer
feedback

Probably the single most important thing is to use a framework, such as jQuery, or prototype, to iron out the differences between browsers, and also make things easier in general.

link|improve this answer
feedback

YUI Theatre has a bunch of videos (some with transcripts) by Steve Souders, Douglas Crockford, John Resig and others on JavaScript, YUI, website performance and other related topics.

There are also very interested google tech talks on Youtube on jQuery and other frameworks.

link|improve this answer
feedback

You can pick up a lot from Pro JavaScript Techniques, and I'm looking forward to Resig's forthcoming Secrets of the JavaScript Ninja.

link|improve this answer
feedback

As an addendum to the Crockford book, you may also want to check out this piece Code Conventions for the Javascript Programming Language. I also have a slightly different suggestion: instead of using a JS library off the bat, why not create your own? You may write a crappy library (as I did), but you'll learn something in the process. You have existing examples you can use as models. Also, to help give you an understanding of JS design patterns, I shall recommend another book, 'Pro Javascript Design Patterns'.

link|improve this answer
feedback

this article (with comments) is also very helpful :

http://www.dustindiaz.com/javascript-no-no/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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