If you have more than one callback in an asynchronous function, will it exit the function on the first execution of a callback, similar to a return statement, or will it continue on?
function handler(conn, callback){
if (conn === true){
callback('found');
}
callback('not found');
});