Possible Duplicate:
Do you recommend using semicolons after every statement in JavaScript?
I have the code like this:
$("#delete_" + row)
.attr('data-href', '/Admin/' + tab + 's/Delete' + params)
.attr('title', 'Delete ' + id);
It's typical of the code I have everywhere in my application. What I notice is that it seems to work with or without a semicolon at the end. Is there any advantage for formatting or any other reason that I should put a semicolon at the end?