There being a ' ; ' after one and not the other. I was wondering if there was a difference or additional functionality between these 2 if statements?
func(x){ // with a ; at end
if (false){
throw new Error('blah');
};
}
func(x){ // without a ; at end
if (false){
throw new Error('blah');
}
}
};;;;;;;;;;;;and it will still be OK.