Tagged Questions
43
votes
11answers
6k views
Do you recommend using semicolons after every statement in JavaScript?
In many situations, JavaScript parsers will insert semicolons for you if you leave them out. My question is, do you leave them out? I'll post simple Yes/No answers as a poll, but I'm also interested ...
21
votes
5answers
1k views
What are the rules for Javascript's automatic semicolon insertion?
Well, first I should probably ask if this is browser dependent.
I've read that if an invalid token is found, but the section of code is valid until that invalid token, a semicolon is inserted before ...
20
votes
7answers
1k views
Why use semicolon?
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 ...
17
votes
7answers
3k views
Best practice for semicolon after every function in javascript?
I've seen different developers include semicolons after functions in javascript and some haven't. Which is best practice?
function weLikeSemiColons(arg) {
// bunch of code
};
or
function ...
11
votes
2answers
337 views
What does the leading semicolon in JavaScript libraries do?
In several JavaScript libraries I saw this notation at the very beginning:
/**
* Library XYZ
*/
;(function () {
// ... and so on
While I'm perfectly comfortable with the "immediately executed ...
10
votes
4answers
1k views
JavaScript: When should I use a semicolon after curly braces?
Many times I've seen a semicolon used after a function declaration, or after the anonymous "return" function of a Module Pattern script. When is it appropriate to use a semicolon after curly braces?
5
votes
7answers
352 views
javascript open brace in the same line
I remember there is a convention/recommendation to put opening brace in the same line, because the way Javascript add semicolon or something.
//OK
function blah(){
};
//Probably not OK
function ...
4
votes
4answers
273 views
Should I put a Semicolon (;) when I use onclick=“”
Should I put a Semicolon (;) when I use onclick=""
<p onclick="closeLightBox();">Click<p>
or
<p onclick="closeLightBox()">Click<p>
3
votes
7answers
296 views
Why is a semicolon required at end of line?
Why does this work:
a = []
a.push(['test']);
(function() {alert('poop')})()
But this gives the error "number is not a function":
a = []
a.push(['test'])
(function() {alert('poop')})()
The only ...
2
votes
3answers
106 views
Why no semicolon at the end of js expression in javascriptmvc app?
I am starting to learn javascriptmvc, and in code samples, I see code without semicolons at the end of expressions. Does this count on automatic semicolon insertion or am I missing something? code ...
2
votes
8answers
1k views
Should I use semi-colons in javascript? [closed]
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 ...
1
vote
6answers
98 views
Does a semi-colon matter in JavaScript [closed]
Possible Duplicates:
do we need semicolon at the end
Why use semicolon?
Are semicolons needed after an object literal assignment in JavaScript?
Should I use semi-colons in javascript?
...
1
vote
2answers
83 views
missing semicolon breaks script unexpectedly
NOTE: originally, i thought the issue was caused by something more complex; i see now (and edited the title and sample code) that the only difference is the presence or absence of a semicolon. that ...
1
vote
2answers
99 views
Aptana complaining about JavaScript semicolons
Why does Aptana with either validator (Mozilla or JSlint) complain about this code:
var collectionOfValues = {
key0 : value0;
key1 : value1;
key2 : value2;
};
It works fine with , but ...
1
vote
5answers
123 views
Javascript: Situation with no semi colon needed?
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 ...
1
vote
4answers
142 views
I've heard Javascript inserts “;” automatically and that may cause problems [closed]
Possible Duplicate:
What are the rules for Javascript's automatic semicolon insertion?
I've also heard that Go insert them too, but they followed a different approach
How does ...
1
vote
2answers
147 views
Enforce semicolons in my Javascript?
How best does the developer who's decided he likes semicolons at the end of his Javascript statements enforce that expectation technically for himself?
I'm using Visual Studio (ASP.NET webapps), but ...
1
vote
4answers
717 views
Utility to auto insert semicolons in javascript source code?
The question is pretty self explanatory.
I'm working with code from multiple developers. Some of whom are inconsistent in their use of semicolons, and I just want them after every line for ...
0
votes
2answers
102 views
What are the criteria for automatic semicolon insertion? [closed]
JavaScript befuddles me with its implicit line termination. It's a very C-like language, except that ending lines in a semi-colon is often optional.
So how does it decide when to assume an ...
0
votes
4answers
174 views
Is it always safe to insert a linebreak after a semicolon in javascript?
I am having an issue checking in a minified javascript file into Clearcase. The file in question is a single line, well over the 8000 character limit that Clearcase imposes.
I know that javascript ...
-2
votes
2answers
86 views
Are semicolons mandatory in javascript statements?
I want to know, is this legal?
function test()
{
alert ("hello")
$("#loading").show();
}
Or should I write this instead:
function test()
{
alert ("hello");
$("#loading").show();
}
...