async function doesSocketAgree(){ await new Promise(resolve => { socket.emit('doesOtherSocketAgree', otherSocketId, (answer) => { resolve(answer); }); }); }