I want to call this:
function fwc(a, b, callback) {
dosomestuff(a,b);
callback();
}
with this:
fwc (a,b);
Sometimes i need the callback and sometimes I don't. Can this cause trouble when I call the function and completely ignore the callback?