vote up 31 vote down star
30
8  
I'm just impressed that this question has been up for 30 min and no one has yet answered with "The most common mistake for Javascript is 'using JavaScript'" – Brian Postow Jul 27 at 15:11
4  
@Brian: :P Javascript, if used properly, is a decent scripting language. It's a widespread client-side browser language and it allows the use of first-class functions. It's not going to be as fast as C++ or Java, and it's weakly-typed, but I'd much rather see it than VB or any other scripting language. – Jason S Jul 27 at 15:24
3  
@Brian: Javascript is actually a very good language. =/ – illvm Jul 27 at 16:23
1  
I don't personally think that JavaScript is that bad of a language. (I have issues with the way it merges with HTML and PHP, but that may just be my office...) I just was surprised that no one ELSE had said it B-) – Brian Postow Jul 28 at 20:28
show 4 more comments

44 Answers

prev 1 2
vote up 0 vote down

Always taint-check strings before adding them to the DOM, calling eval(), or doing anything that might expose the string.

link|flag
vote up 3 vote down

Using eval() for almost any purpose.

link|flag
2  
The problem with sayings is the folks who forget why they're said but keep "saying" them anyway... – Shog9 Jul 28 at 17:01
show 3 more comments
vote up 0 vote down

From a non-technical standpoint, one of my own personal biggest mistakes was diving right in and trying to write all my own code to solve my problems.

Turns out, it's next to impossible to encounter a problem that no one else has already solved, so do yourself a favor and spend 5 minutes searching 'snippet' websites to see if there is already a solution.

As far as technical mistakes, since javascript is loosely typed, it's easy to accidentally compare two values like an int to a string or something.

link|flag
vote up 36 vote down

Testing in one browser and expecting it to work in another.

link|flag
show 6 more comments
vote up 3 vote down
  • Using !=/== instead of !==/=== to check type as well as equality. "1"==1 is true; "1"===1 is false
  • Not understanding scope. var keeps it in the local lexical scope. Not putting it there puts in globally.
  • All browsers are different. Make sure your code works in the ones you care to support.
  • do not use for(var item in myArray)*

*: It just happens to work because the functions, like join are marked as non-iterable. If you extend the array (as many libraries do, your code will break). That construct is meant for iterating over object members. For example:

var obj = {variable1: "hello", variable2: "world", 
           function1: function() { 
               alert("func"); 
           }
          };
for(var p in obj)
    alert(p + ": " +obj[p]);
//p will equal "variable1", "variable2", "function1"

var arr = ["a", "b", "c"];
//using the same construct as above still works, but just wait.
arr.myFunc = function() { alert("uh oh"); }
//now looping in that same way will cause p to be "myFunc" in an iteration
//which you may not have intended
link|flag
1  
Could you add an explanation? – Sarah Vessels Jul 27 at 14:44
1  
Would you expand on that last point please? – Sukotto Jul 27 at 14:50
3  
I would phrase your third point as "Don't use libraries that make the mistake of adding properties to the core objects" - if the creators of the library made that mistake, who knows what else they'll have got wrong ;-) – NickFitz Jul 27 at 14:56
show 5 more comments
vote up 10 vote down

Using any of escape(), encodeURI(), and encodeURIComponent() when you need one of the other ones. This is really good at introducing incredibly subtle, hard-to-debug errors into Ajax interactions. See this lovely comparison of the three.

link|flag
vote up 3 vote down

One mistake I experienced was that programmers are trying to apply e.g. common Java or C++ design patterns to JavaScript that didn't make any sense in that language and therefore overcomplicating JavaScript development.

jQuery or many other libraries/frameworks may have at the beginning a quite uncommon approach (for old school OO typed language developers) to solve problems but it is usually way more effective once you got into it.

An of course not using one of the great libraries is a huge mistake, too.

link|flag
show 2 more comments
vote up 12 vote down

Failing silently when JavaScript is disabled on the client.

Ideally we should all be using progressive enhancement so there is no loss of core functionality when JS isn't available.

  • Edit: Sometimes some people have to use JavaScript for a task. If you do then put in a suitable <noscript> trap - even at page level. Don't just leave items that do nothing at all when you try to interact with them without JS.
link|flag
8  
this is a point of some contention though. there aren't many people with js disabled. and if you are building an ARIA, you often need to use javascript for some tasks. – geowa4 Jul 27 at 14:46
2  
More people have javascript issues than you think: reportedly 1 visitor in 20, and that's not counting Google, some smart phone users with poor javascript support, and NoScript users. And if you work for the US Govt you are required to support screen readers, and that typically means working with javascript turned off. – Joel Coehoorn Jul 27 at 14:55
1  
@George IV - Hence my italics round /core/. It might be a poor user experience with JS disabled but you should at least be able to perform the important operations without it. And if you can't it should tell you rather than just leaving mouse clicks that do nothing. – Colonel Sponsz Jul 27 at 15:02
show 1 more comment
vote up 7 vote down

Declaring local variables without var keyword.

link|flag
show 1 more comment
vote up 25 vote down

Missing var, and because of this magic erros, when i is changed out of the expected scope:

for(i = 0; i < 10; i++){
}

should be:

for(var i = 0; i < 10; i++){
}

To clarify:

var i = 10;

function ii() {

   for (i = 0; i < 10; i++) {
      test();
      alert(i);
   }

}

function test() {
   i++;
}

ii();

Output:

1, 3, 5...

With

for (var i = 0; i < 10; i++)

Output:

1, 2, 3
link|flag
28  
I think I'd advise against using the same variable name while nesting for loops. That's not a common JS mistake, that's simply bad programming. – Doomspork Jul 27 at 14:43
4  
@Doomspork this is just illustration of scopes. I can modify example to show this error without innerloop with the same name. For example there possibility to change i in closures. – Mike Chaliy Jul 27 at 14:46
2  
@Matt: you can write var i=10 a thousand times in a row and it will still work. JS is basically a giant map. Using var only places the variable in the current scope. While not using it places it globally. – geowa4 Jul 27 at 14:53
3  
for does not create scope in JavaScript. Both loops won't work right in the exact same way (inner terminates outer). The only difference is that the second one doesn't create a global variable if run within a function. – Borgar Jul 27 at 14:56
show 6 more comments
vote up 17 vote down

Don't use document.write().

Declare variables with 'var' (keeping them from being globals).

Read Javascript: The Good Parts - an amazing (and concise) book by a javascript pioneer that will answer this question perfectly.

link|flag
2  
What do you use in place of document.write()? – Gary Willoughby Jul 27 at 18:06
2  
I use DOM manipulation, e.g. document.getElementById('someEmptyDiv').innerHTML = 'some dynamic content'. – Marius Gedminas Jul 27 at 18:26
vote up 7 vote down

accidentally comparing anything (like an int, boolean, etc) to a string without type checking (i.e. the === operator)

link|flag
vote up 13 vote down

Rookie mistake #1: Building difficult, browser-compatibility-sensitive operations by hand instead of using jQuery.

link|flag
7  
Or any of the other libraries. – jason Jul 27 at 14:44
8  
Rookie mistake #2: Thinking there's nothing outside jQuery, when in fact there's plenty of other good libraries -- and sometimes no library is the best choice. – Cédric Bertolini Jul 27 at 15:09
32  
Rookie mistake #3: Using jQuery without understanding Javascript well enough to use it. – Jason S Jul 27 at 15:19
show 7 more comments
vote up 3 vote down

Trying to use objects as property names / associative array keys. For several purposes it will look as if it worked, but it didn't; the object was coerced to a string representation.

link|flag
4  
That's not chaos's point -- the point is you can't use objects as a key in an associative array. – Jason S Jul 27 at 15:21
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

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