Many times I've seen a semicolon used after a function declaration, or after the anonymous "return" function of a Module Pattern script. When is it appropriate to use a semicolon after curly braces?
|
|
|
You use a semi-colon after a statement. This is a statement:
because it is a variable assignment (ie creating and assigning an anonymous function to a variable). The two things that spring to mind that aren't statements are function declarations:
and blocks:
Note: that same block construct without semi-colon also applies to |
|||||||||||||
|
|
It matters too when you intend to minify your code. So I personally add one after every I wrote a post about ASI in JavaScript. |
||||
|
|
|
You never need to; you always can (except before Explanation:Unfortunately, Javascript semicolons are optional. It is (very) good practice to terminate every statement with a semicolon. Therefore, best practice is to put semicolons after the following two braces (only):
|
|||||||||
|
Don't use a semicolon:...if it's just your every-day function declaration:
Use a semicolon:...if it's an assignment:
|
|||
|
|
|
If we have a self-invoking function, we need to put a semicolon before it, otherwise it becomes part of the previous assignment statement. Consider the following:
...plus a JavaScript error reported by the browser: What is happening is that
If we put a semicolon after the definition of
But I suggest that since the problem is due to the lack of a semicolon at the end of an assignment statement, we should perhaps make a habit of always putting a semicolon after defining functions in this way. i.e. all of my functions above should have a semicolon after the closing brace, because they are all assignments of anonymous functions. |
||||
|
|
|
Semicolons go at the end of lines that do not end in a curly brace or to separate statements on the same line. It does no harm to use them after a closing brace, or to wear suspenders and a belt, but it does look a little nerdy. |
|||
|
|