vote up 1 vote down star

I've only written a small amount of javascript, that runs embedded in a java application, but tested using QUnit, has been mixed and I've not noticed any problems yet.
Is there some conventional wisdom whether to use semi-colons or not in javascript?

Duplicate of Do you recommend using semicolons after every statement in JavaScript?

flag

closed as exact duplicate by Diodeus, Paul Dixon, tvanfosson, Hank Gay Feb 11 at 16:45

10 Answers

vote up 11 vote down check

Use them. Use them constantly.

It's far too easy to have something break later on because you neglected a semi-colon and it lost the whitespace which saved it before in a compression/generation/eval parse.

This works (minimal semi-colon use for clarity):

function foo(){};foo()

This does not:

function foo(){}foo()
link|flag
vote up 0 vote down

The semi colon triggers auto-indenting in my editor. Good enough reason for me to use it always.

And yes, consistency too.

link|flag
vote up 2 vote down

They are required by the ECMAscript standard, see section 7.9 - it's just that the standard defines some rules that allow them to be automatically inserted while parsing the script.

So always use them!

link|flag
vote up 1 vote down

I always promote the use of semi-colons when writing Javascript. Often the interpreter will be able to infer them for you; but I have yet to see a reason (asides from laziness ;-)) why you would deliberately write your code in a less precise fashion than possible.

To my mind, if the structure of the code is obvious, it will be really clear where the semicolons go, such that you won't even have to think about it after getting in the habit (i.e. at the end of each line); on the other hand, if it's not immediately clear to you where the semicolon goes, then chances are the structure isn't the most obvious anyway, and explicit semicolons are needed there more than they would be elsewhere.

It also gets you into the habit of understanding and delimiting statements in your head, so you have a (admittedly marginally) better understanding of how your code might parse into an AST or similar. And that's got to be a good thing when debugging syntax errors.

link|flag
vote up 1 vote down

Use them. There are a few reasons why, most notably

  1. javascript minifiers / compressors
  2. exceptions to the rule that a new line is a new expression (e.g. terminating a line with a variable and starting the next one with a parantheses.)
link|flag
vote up 2 vote down

If you don't use them and then minify your code you can run into issues with all your code being on a single line and the browser doesn't fully grasp which command ends where.

link|flag
vote up 0 vote down

this is a duplicate

link|flag
vote up 3 vote down

Yo should read THIS previous question.

link|flag
+1 you beat me by a couple seconds – jmein Feb 11 at 16:42
vote up 1 vote down

The basic idea of semicolons is to tell the browser that you have just finished a command. You actually don't need them at all if you put each instruction on a different line but it is good practice to put them in anyway.

link|flag
vote up 3 vote down

I'd say use them all the time; most code you'll encounter uses them, and consistency is your friend.

link|flag

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