Possible Duplicate:
Is there a difference between a function with and without a return statement?
Are there differences between an empty function and a function that only returns nothing?
Empty function:
function a() {
}
Function that only returns nothing:
function b() {
return;
}