Possible Duplicate:
JavaScript: When should I use a semicolon after curly braces?
Someone added semicolon after function declaration, but someone not. Is this a good practice to add semicolon after function declaration?
function test(o) {
}
function test(o) {
};