Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any reasons, apart from subjective visual perception and cases where you have multiple statements on the same line, to use semicolon at the end of statements in Javascript?

It looks like that there's plenty of evidence suggesting that use of semicolons is highly optional and is required in only few of the specific cases.

share|improve this question
6  
+1 Although when you say apart from subjective visual perception I feel you are trying to downplay the importance of sound coding conventions. Because what are coding convention if not helping others to understand your code by appealing to subjective visual perception? – flybywire Mar 8 '10 at 7:58
flybywire, good point, but I just didn't want to get this question closed by SO mods as they already did that to the one I opened on python. Hope you do understand. – Art Mar 8 '10 at 8:04
i found a dupe stackoverflow.com/questions/42247/… – N 1.1 Mar 8 '10 at 8:36

6 Answers

Because JavaScript does nasty things to you when it guesses where to put semicolons. It's better to be explicit and let the interpreter know exactly what you meant than it is to let the idiot box guess on your behalf.

References:

...and a cast of thousands.

share|improve this answer
8  
Guesses? It follows strict rules, that developers should take 5 minutes to learn and then drop the useless characters if they so choose. Also, the idiot box is the TV... – rpflo Feb 7 '11 at 5:51
2  
great article about js semicolons: mislav.uniqpath.com/2010/05/semicolons – makevoid Mar 17 '11 at 12:36
blog.izs.me/post/2353458699/… – Art Nov 14 '11 at 23:28
What a terrible answer. JavaScript interpreters never "guess" where to put a semicolon. Developers might "guess" at the rules of ASI, but that's never a good idea. A developer should understand the language they use. – the system Mar 1 at 19:10

Yes. Internet Exploder will die horribly when omitting them.
It might also create trouble when minifying the Script.
Apart from that: Code Convention.

EDIT: adding these for reference:

share|improve this answer
1  
There are many reasons to do proper semicolon placement that have nothing to do with partisanship and Microsoft-hating. It is far more than mere code convention (as the many other answers on this page can attest to!). – JUST MY correct OPINION Mar 8 '10 at 8:15
@ttmrichter I don't hate MS and I gave another practical reason (minification). Also, I never said the list is complete, did I? Apparently some people felt this answer is helpful, otherwise it would have gotten the upvotes it got. – Gordon Mar 8 '10 at 8:24
6  
@Art No, sorry. I stated the first three things that came to my mind. I wouldn't know what to add now what wasn't mentioned in the other answers already. This page as a whole answers your question very nicely. I think this is much more important than having one single comprehensive answer. – Gordon Mar 8 '10 at 8:35
1  
+1 for Internet Exploder – v01d Aug 20 '10 at 4:48
3  
tl;dr -- I don't use semicolons except where required, I develop for IE6-IE9 on high traffic sites (millions of hits per month), haven't had a problem yet--because I know the few simple rules. IE won't die. I also use closure compiler and uglify.js, neither choke. And finally, JavaScript has cliques of code conventions, one of which is no useless semicolons, so that's an argument FOR it (welcome to the future of JS, btw). – rpflo Feb 9 '11 at 6:19
show 4 more comments

As Douglas Crockford suggests -

Put a ; (semicolon) at the end of every simple statement. Note that an assignment statement which is assigning a function literal or object literal is still an assignment statement and must end with a semicolon.

share|improve this answer
up vote 7 down vote accepted

It looks like there are very few reasons, or, actually, edge cases, when one would want to use semicolons.

http://aresemicolonsnecessaryinjavascript.com/ <- this is down now, use

https://github.com/aresemicolonsnecessaryinjavascript/aresemicolonsnecessaryinjavascript.github.com

share|improve this answer
2  
I can't upvote this enough. – rpflo Feb 9 '11 at 6:21
You can enlist your friends help :) – Art Feb 10 '11 at 5:50
I'm saddened that I didn't get a chance to see this domain before it disappeared. – Koviko Mar 26 '12 at 13:43
@Koviko, fear not: github.com/aresemicolonsnecessaryinjavascript/… – Art Mar 27 '12 at 2:26
1  
+1 ... Good article: blog.izs.me/post/2353458699/… – the system Mar 1 at 19:32

Because

  • Debugging the subtle bugs that occur when you don't is a waste of time you could be spending doing something cool
  • Minifiers/packers/compressors rely on it
  • It makes it clearer to someone maintaining the code later what you intend
  • Not all code maintainers understand the rules for automatic insertion well enough to maintain code with them left out
  • Not all implementations get the rules for automatic insertion quite right
share|improve this answer
1  
Which implementation doesn't get the rules of ASI right? – the system Mar 1 at 19:23

If you asked, because you come from a Python background: The difference is:

  • in Python you shouldn't terminate lines with anything, but are allowed to use the semicolon, if you must

  • in JavaScript you should terminate the lines with a semicolon, but are allowed (PDF, page 25, point 7.9) to omit it, if it's unambiguous

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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