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

I've seen a triple semicolon in a few expressions here and there.
Does it have any logical effect?

The Closest thing I've seen for an explanation is that it tells the Dean Edwards compressor to ignore that line.

;;; var someVar = 'Rebel';
share|improve this question
Please post some examples. It could have different meanings in different contexts. – FrustratedWithFormsDesigner Jul 16 '10 at 20:13
Code sample? I don't believe it's convention or special syntax that I've ever encountered. – g.d.d.c Jul 16 '10 at 20:13
Could you post an example? If I'm not mistaken, ;;; is equivalent to ;, since an empty statement does nothing. I'm guessing someone was using ;;; to section off code or something. Also, make sure the code you're reading is actually JavaScript :-) – Joey Adams Jul 16 '10 at 20:14
3  
Maybe you're thinking of a double semicolon in a for-loop, such as for (;;) ... – FrustratedWithFormsDesigner Jul 16 '10 at 20:14
11  
It's three eels. Particularly if your @ is near water (indicated by }), you'll want to be very cautious when you see these, unless you're either wearing a greased cloak or robe or a slippery cloak, as they have a drowning attack than can kill you in one round. – Weston C Jul 16 '10 at 20:50
show 2 more comments

4 Answers

up vote 18 down vote accepted

Nothing. Absolutely nothing.

Three semicolons, ten semicolons, a hundred semicolons, they all get interpreted to the same result: nothing.

share|improve this answer
1  
Let me be known as the guy who got you over 10K rep. :) – ChaosPandion Jul 16 '10 at 20:52
@Chaos, thanks dude! – Jacob Relkin Jul 16 '10 at 20:55
1  
@Gert - I also measure time in nano seconds. :) – ChaosPandion Jul 16 '10 at 20:55
Guys, this is the age of quad-core processors. There really isn't much more time required to parse some more freakin' semicolons! Jeez. – Jacob Relkin Jul 16 '10 at 21:00
2  
It's not exactly "nothing"... Multiple semicolons do just the same that one single semicolon, but using no semicolon at all and relying on "automatic semicolon insertion" by the interpreter is a BAD practice. In most cases a carriage return with no semicolon will just work, but in a few cases the results will be unexpected and erroneus. – Sebastián Grignoli Jul 16 '10 at 22:46
show 3 more comments

It makes people ask questions on StackOverflow.

Other than that, it does nothing.

share|improve this answer

Ends an empty statement 3 times.

share|improve this answer
Hmm, I think we only know about two empty statements. We don't know that the three semicolons aren't following a non-empty statement. – ghoti Oct 15 '12 at 10:54
Answer as per OPs code. – Incognito Oct 15 '12 at 12:31
My read of the question was that the code posted was "the Closest thing [he'd] seen", not necessarily one of the examples he has "seen ... here and there". The OP's code is clear about only two empty statements amongst the four semicolons shown. – ghoti Oct 16 '12 at 0:44
@user107463 can you comment on this? – Incognito Oct 16 '12 at 1:26

They are empty statements and have no effect. It is possible that the interpreter or compiler will remove them unless a statement is required by the syntax.

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.