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

I missed semicolons in some of the places in my javascript , but its not throwing error in any of the browsers. Do the : at the end needed for sure

share|improve this question
possible duplicate of Why use semicolon? – N 1.1 Oct 23 '10 at 2:58

5 Answers

up vote 12 down vote accepted

The concept is known as JavaScript Semicolon Insertion or "Automatic Semicolon Insertion". This blog post: JavaScript Semicolon Insertion: Everything you need to know outlines the concept well in an understandable manner using examples under the headings:

  • Where Semicolons are Allowed
  • Where Semicolons May be Omitted
  • The rules

It even digs into the official ECMAScript specification about the topic.

share|improve this answer
Thanks john very much – kobe Oct 23 '10 at 3:07

Javascript does something called "semicolon insertion" which means you can actually write code that omits the semicolon in certain places, and they'll basically be added for you when the code is parsed.

The rules around when this happens a little complex. For simplicity's sake, many developers simply pretend semicolon insertion doesn't exist.

share|improve this answer
Thank...you all..i got it. – kobe Oct 23 '10 at 3:07
1  
Sometimes I fantasize about a world where semicolon insertion doesn't exist. – JAL Oct 23 '10 at 3:11
There was an interesting thread recently on the node.js mailing list that's worth a read: groups.google.com/group/nodejs/browse_thread/thread/…. Check out Isaac Schlueter's coding style; it's an interesting way to take advantage of ASI -- it's not necessarily a bad thing :) – ShZ Oct 23 '10 at 6:22

Semicolon is not required for javascript programming nevertheless i advice you to use it, it makes your code more readable and is actually a good practice almos all cool Programming languages use it.

So take a stand and use it, its up to you now!!

share|improve this answer
1  
It's not true that semicolon is not required. From the spec: Certain ECMAScript statements **must** be terminated with semicolons. bclary.com/2004/11/07/#a-7.9 – John K Oct 23 '10 at 3:14
yes you are right i clarify thanks to Automatic Insertion there are many cases you are entitle to avoid it but(a big BUT) as i said before i dont think is good practice to do it – Necronet Oct 23 '10 at 4:05
In Scala and Groovy (and Python) you don't need semicolon, and it is more idiomatic not to use them. What are the "cool" languages you speek of that need semicolon?? – Pylinux May 7 at 14:35

If it's not throwing compiler errors, you should be fine. It's better that you do remember to use them all the time however, as some languages that you might get into such as objective-c are adamant about their use.

share|improve this answer
3  
remembering a syntax rule in one language doesn't have any benefit toward other languages. – TokenMacGuy Oct 23 '10 at 3:02
But the rule of a semicolon is so universal that in general remembering it has many benefits. – XenElement Oct 24 '10 at 1:57

You can write javascript without semiconon, you only need to insert them if you start a line with a parantesis.

The sugarjs times() function is a good example:

<script>
    var somthing = 1 + 3
     ;(5).times(function(n){
         console.log(n + " line") //prints "X line" 5 times
     })
</script>

This article debunks most of the myths surounding javascript and semicolons: link

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.