the semicolon is often used to separate multiple statements (for example, in Perl, Pascal, PL/I, and SQL). In other languages, semicolons are called terminators and are required after every statement (such as in Java, and the C family).
44
votes
3answers
4k views
What are the rules for Javascript's automatic semicolon insertion (ASI)?
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 ...
58
votes
6answers
10k 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 ...
27
votes
6answers
3k 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 ...
25
votes
3answers
989 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 ...
21
votes
6answers
4k views
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?
3
votes
8answers
2k views
Should I use semi-colons in javascript? [duplicate]
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 ...
26
votes
14answers
2k views
semicolon at end of if statement
Today, after half an hour of searching for a bug, I discovered that it is possible to put a semicolon after an if statement instead of code, like this:
if(a == b);
//do stuff
which basically means ...
31
votes
6answers
8k views
Semi Colon after class declaration braces
Apologies in advance for what is probably a stupid question, but in C++ classes, why the semi-colon after the closing brace? I regularly forget it and get compiler errors, and hence lost time. Seems ...
6
votes
7answers
2k 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 ...
10
votes
2answers
3k views
Semicolons superfluous at the end of a line in shell scripts?
I am editing this shell script (by somebody else) which contains the following.ยด:
case $1 in
0 )
echo $1 = 0;
OUTPUT=3;;
1 )
echo $1 = 1;
OUTPUT=4;;
2 )
echo $1 = 2;
...
12
votes
4answers
256 views
Use of commas versus semicolons in JavaScript?
Given the following code
var fn = function () {
var x = 'x',
y = 'y';
this.a = 'a',
this.b = 'b',
this.c = 'c';
this.d = 'd',
this.e = 'e';
}
You can see that there ...
9
votes
4answers
891 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>
10
votes
4answers
953 views
Vim smart insert semicolon
Is there a Vim plugin that can handle smart semicolon insertion, like the one in Eclipse?
Example (pipe character is insertion cursor):
foobar(|)
I type a semicolon:
foobar();|
Similarly:
...
6
votes
6answers
1k 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 ...
5
votes
3answers
1k views
Why do some languages need semicolons?
I understand that semicolons indicate the end of a line in languages like Java, but why? I get asked this a lot by other people, and I can't really think of a good way to explain how it works better ...
3
votes
4answers
1k 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 ...
1
vote
1answer
716 views
why the semicolon couldn't place in the CommandText of a OracleCommand when C#
why the semicolon(';') couldn't place in the CommandText of a OracleCommand when C#
just lick below
string sql = "select * from table1;";
OracleCommand oc = new OracleCommand(sql , con);
...
1
vote
4answers
167 views
I've heard Javascript inserts “;” automatically and that may cause problems [duplicate]
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
7answers
1k views
How actually does this if statement work
It has been a popular question that how to print hello world without using semicolon.I know many codes but this one sounds weird because I am unable to get the logic behind it.Please help me know how ...
-5
votes
2answers
165 views
Semicolon and Comma in c [closed]
Why do these programs work, and why do I not get a "semicolon missing" error? With this question i want to ask that when i can skip semicolons. As far as i know semicolon is sentence terminator. Is ...
8
votes
6answers
1k views
Does C# allow double semicolon ; ; if so, are there any special ways?
I am writing a statement and it compiles, but the compiler [VS] never tells me that I put the semicolon two times.
This means in ASP.NET MVC 3
return Json(mydata);;
return Json(mydata);
Both of ...
8
votes
3answers
2k views
When would you put a semicolon after a method closing brace?
I've been programming in Java for a while, and I've just come across this syntax for the first time:
public Object getSomething(){return something;};
What's interesting me is the final semicolon. ...
3
votes
1answer
105 views
Missing ';' before 'template<'
So I'm getting a strange error when I'm compiling my program:
Error 1 error C2143: syntax error : missing ';' before ''template<''
I'm doing everything pretty standard; nothing out of the ...
1
vote
1answer
140 views
specifing string with semicolons in UrlScan.ini
I want to block user-agents with UrlScan on IIS 6. However I am not able to specify an user-agent with a semicolon in the string. I think this is a very common scenario, but I can't find any answer on ...
1
vote
4answers
219 views
Does a semi-colon matter in JavaScript [duplicate]
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
188 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
10answers
1k views
What are the trade-offs between languages that terminate statements with semicolons and those that don't? [closed]
Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa?
(Note to late-comers: the original ...
0
votes
1answer
499 views
C++ syntax error : missing ';' before '<'
Ehh, I'm having an issue which i don't understand...
class ManagedGlobals
{
public: gcroot<Editor^> MainEditor;
};
Why does my compiler give me:
syntax error : missing ';' before '<'
...
0
votes
1answer
490 views
When are Scala Semicolons required
I am trapped at work with a locked down pc. But I am trying to practice my scala. I am using Ideone.com since I can't even install scalac...
Anyway this is not compiling:
class DPt(var name: String, ...
