⚠️ Warning: this is an old article and may include information that’s out of date. ⚠️

Introduction

Those that are just setting out to learn JavaScript are typically overwhelmed by the amount of online resources to be found about learning JavaScript. Not only this, but every webpage visited presents a potential learning opportunity just by inspecting the source.

However, not all resources are guaranteed to be up-to-date. JavaScript has been around for over a decade, and coding standards have changed drastically over time. While a code snippet may still work in today’s browsers, you may unknowingly be using an outdated practice that might eventually lead to a bit of embarrassment.

You may sometimes find these old practices mixed in with good and modern code. It seems that folks might learn new code styles without necessarily casting away all their old habits. So keep in mind not to throw out the baby with the bathwater!

Here’s some old practices that should help you spot old outdated code.

Global variables

1
2
3
4
5
6
function foo() {
  // global function
  greeting = "Hello" + name; // global function
}
name = "James"; // global variable
foo();

Tons of global variables is a sure sign of outdated code. Ideally you want to aim to have at most one global variable, which is a namespace for all your code to be written under. All variables in your functions should be defined with the ‘var’ keyword to ensure they don’t break out of their scope.

Here’s an example where we defined one global variable entry point (myNamespace) for our code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
var myNamespace = (function () {
  // declare all variables with var
  var greeting, name;

  name = "James";

  greeting = function () {
    return "Hello " + name;
  };

  return {
    greeting: greeting,
  };
})();

greeting(); // ERROR: not defined
myNameSpace.greeting(); // 'Hello James'

Commented CDATA blocks

1
2
3
/* <![CDATA[ */
// code here
/* ]]> */

This appears in old scripts that are presented inline (instead of externally in a separate file). The original purpose of those was to get around HTML validator errors (and to conform to XHTML), but that appears to no longer be an issue with validators today. Also, the usage of HTML validators itself seems to be waning, although they may sometimes be helpful in the development of websites.

document.write()

1
document.write("foo");

The W3C, along with most everyone else, warns against using this, as it may result in overwriting (blanking) the entire page and other unwanted behavior.

It’s now used mostly by ads, and developers have for years been trying to control them. So don’t use it, unless you’re trying to prevent ads from using them. In other words, don’t use it unless you know what you’re doing.

Inlined event handlers

1
2
3
<a onclick=“myClickFunction()” href=“http://foo.com"></a>
<a onmouseover=“myMouseoverFunction()” href=“http://foo.com"></a>
<form onsubmit=“mySubmitFunction()” href=“http://foo.com"></form>

This mixes behavior with the actual content, which means when it’s time to make changes to the code, you likely have to change both the HTML and the JavaScript, instead of simply just the JavaScript. It also means that you may be serving useless content to users with JavaScript disabled (they’re still out there, believe it or not). This also might have an affect on search engines, that might not be able to access this JavaScript-only content (although crawlers are getting more sophisticated and this may be less of an issue as time progresses).

Instead, the very least you can do is add IDs to each element (or better, use a JavaScript selector engine) and hook into them in your JavaScript, which makes the code much easier to maintain:

1
2
3
<a id=“link1” href=“http://foo.com"></a>
<a id=“link2” href=“http://foo.com"></a>
<form id=“myForm” href=“http://foo.com"></form>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(function () {
  // sandbox everything
  // variable declarations
  var link1, link2, myForm;

  window.onload = function () {
    // or onDOMContentLoaded (wait for DOM to be ready)
    // simple DOM selectors
    link1 = document.getElementById("link1");
    link2 = document.getElementById("link2");
    myForm = document.getElementById("myForm");

    // well-supported older event handler
    link1.onclick = function () {
      // code
    };

    // better (DOM2)
    link1.addEventListener(
      "click",
      function () {
        // or attachEvent for IE
        // code
      },
      false
    );

    // etc...
  };
})();

link1.onclick is widely supported, but there’s a few downsides, including the fact you can only add ONE event listener on the element (it will be overwritten if you try to add another). Use addEventListener (attachEvent in IE) instead, or the method of your favorite JavaScript engine.

In any case, the point here is to get the JavaScript out of the HTML and into the rest of your JavaScript.

1
<a href="“javascript:doSomething()”"></a> <a href="“javascript:void(0)”"></a>

Both of these examples commit the same error as above - mixing JavaScript behavior with the HTML content. And the solution is similar: find these links with JavaScript (most simply by adding an id on them) and hook into them there.

The second example brings up a good issue, and a point of contention. Ideally this would be a link to fallback content for users that have JavaScript disabled (and for search engines!), which would be a link to a new page (Flickr is an example of a modern site that uses this approach). For better or worse, however, you might be building a web app that only works with JavaScript, and you might want a link that only exists to kick off a JavaScript event.

You’ll find that removing the href value or making it blank (href="") might remove the styling from the link and no longer makes it clickable. An easy fix is to set the href equal to a hash tag (href="#"). A side effect might be a “jump” to the top of the page after clicking the link, which requires and requires e.preventDefault() within the attached event. Href="#" may soon become an antipattern (or maybe it is already), since you can also fix this with CSS styling:

1
2
3
a {
  cursor: pointer;
}

This gives the cursor a pointer when the user hovers over the link, even if it’s missing the href value.

But again, this isn’t generally recommended. It’s better to make a non-JavaScript fallback by linking to an actual page, then overriding it with e.preventDefault() for JavaScript-enabled users!

Slow arrays

1
2
3
4
5
6
7
8
9
var arr = [1, 2, 3, 4, 5];

for(var x in arr) {
  /* code */
}

for(var i=0; i &lt; arr.length; i++) {
  /* code */
}

For-in loops turn out to be quite slow while going through arrays, so only use them when iterating through properties of an object. The second for loop is much faster, but can be made faster still when we realize what’s being evaluated on each iteration:

1
for (1; n; n) {}

The first statement is evaluated once (1 time) as the loop is initialized, and the second and third parts are evaluated on each run through the loop (n times). Because of this, just as removing fluff from the main body of the loop itself, we would also do well to remove fluff from these statements themselves. As it turns out, it’s quite slow finding the length of the array (arr.length) on each pass, and it’s not necessary to do it more than once since it’s not changing. So we can “cache” the length in a variable in the initializer:

1
2
3
for(var i=0, len=arr.length; i &lt; len; i++) {
  // code
}

And faster yet is a while loop (keep in mind that it will run backwards), which stops when the counter hits 0, which is falsy, causing the loop to stop:

1
2
3
4
var i = arr.length;
while (i--) {
  // code
}

new Object(), new Array(), new Function(), etc

1
2
3
var obj = new Object();
var arr = new Array();
var func = new Function("param1", "param2", "return true;");

While these work, no one really uses them, as there exist less verbose and more common alternatives. Use these instead, which are exactly equal to the above code:

1
2
3
4
5
var obj = {};
var arr = [];
var func = function (param1, param1) {
  return true;
};

alert()

Ok, alert can sometimes still be useful for debugging, but generally you want to use console.log for that anyway. Generally you don’t want to ever prompt the user with alert() however. Its use on the desktop for mainstream use has long been discouraged.

I’m still on the fence about using alert() however, as I think it’s pretty useful and not necessarily ugly in mobile browsers. I’ll spare you and save that for another post.

Missing semicolons

1
2
var name = "Bill";
alert("Hi " + name);

The above code works fine because of a controversial feature of JavaScript called semicolon insertion. But doesn’t it make you feel dirty? It should, especially if you’ve read JavaScript: The Good Parts. Use semicolons for your own good and to prevent major headaches. Leave it to your JavaScript minifier to be clever in deciding when to remove them:

1
2
var name = "Bill";
alert("Hi " + name);

Code for particular user agents

This is also a bit controversial, since unfortunately user agent sniffing is still sometimes necessary. However, in the past it was really abused with code such as this:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
isIE = document.all;
isNS4 = document.layers;
isNS6 = document.getElementById;
if (isIE) {
  // code for IE
} else if (isNS4) {
  // code for Netscape 4
} else if (isNS6) {
  // code for Netscape 6
}

(did I mention that any references to ancient browsers like Netscape is also a surefire sign of old code? But that’s probably too obvious…)

This example detects browsers by features that only exist in each of these old browsers, but the same sin is committed by “sniffing” for words in the user agent string. The unfortunate result is fragmented code targeting each predetermined browser. Not to mention that it’s not future-proof, as it can’t properly anticipate newer browsers.

The better method? If there’s a question about the availability of a method, simply check for it first before using it:

1
2
3
4
5
6
7
8
9
if (document.addEventListener) {
  // detect addEventListener
  // Try the standard first
  document.addEventListener("click", function () {}, false);
} else if (document.attachEvent) {
  // detect attachEvent
  // Typically IE
  document.attachEvent("onclick", function () {});
}

This code is considered feature detection, which is much more acceptable. It also anticipates newer browsers such as IE9, which support addEventListener. This makes sure the code you write doesn’t condemn Internet Explorer to forever use attachEvent.

Christian Heilmann and PPK’s old posts inspired me to write this brief post. You can read much better rationale against using some of the things above at these links:

Six JavaScript features we do not need any longer (Christian Heilmann, 2005)

From DHTML to DOM scripting (Christian Heilmann, 2006)

Three JavaScript articles and one best practice (PPK 2005)