I am setting up some data to do an ajax post and the code looks like this.
var data = {}
data.someId= 3;
data.anotherId = 4;
and this works fine. But why don't I need a semi-colon at the end of the first line?
|
I am setting up some data to do an ajax post and the code looks like this.
and this works fine. But why don't I need a semi-colon at the end of the first line? |
||||
|
Because JavaScript has Automatic Semicolon Insertion. I erroneously called it Automatic Semicolon Injection earlier, which kind of makes sense :P The language requires them, but it preprocesses your script and tries to guess where they should go. This doesn't always work out, as you can see in pst's comment. You should just define the semi colons yourself. Don't let JavaScript guess. |
|||||||||
|
|
They are |
|||
|
|
|
A semi colon for a single statement on a line is not required in Javascript. |
|||
|
|
JavaScript actually doesn't require semicolons to determine the end of a statement. If no semicolon is present, it will use a new line as the end of the statement. The only time it's necessary to use a semicolon is if you want to put two statements on the same line, one right after another. All this being said, it's best practice to always end your statements with semicolons To avoid confusion and to avoid bugs that could be painful to find. |
|||
|
|
Semi-colons are optional in javascript. But it is recommended to add it. |
|||||||
|
(-- in which case I prefix said statement with a semicolon. Other cases of statements beginning with a terminal confusing to ASI generally indicates another problem, such as an expression used as a statement.) – user166390 Jun 19 '11 at 9:06