In the spirit of
- Common programming mistakes for .NET developers to avoid?,
- Common programming mistakes for PHP developers to avoid?
what are common mistakes we should avoid for JavaScript?
|
30
|
In the spirit of
what are common mistakes we should avoid for JavaScript? |
||||||||||||||||
|
|
|
Always taint-check strings before adding them to the DOM, calling eval(), or doing anything that might expose the string. |
|||
|
|
|
|
Using |
||||
|
|
|
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. |
|||
|
|
|
|
Testing in one browser and expecting it to work in another. |
|||
|
|
*: It just happens to work because the functions, like
|
||||||||||||
|
|
|
Using any of |
|||
|
|
|
|
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. |
|||
|
|
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.
|
||||||||||||
|
|
|
Declaring local variables without var keyword. |
|||
|
|
Missing var, and because of this magic erros, when i is changed out of the expected scope:
should be:
To clarify:
Output:
With
Output:
|
||||||||||||||||
|
|
|
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. |
||||||||
|
|
|
accidentally comparing anything (like an int, boolean, etc) to a string without type checking (i.e. the === operator) |
|||
|
|
|
|
Rookie mistake #1: Building difficult, browser-compatibility-sensitive operations by hand instead of using jQuery. |
||||||||||||
|
|
|
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. |
||||
|