Return value from callback function in AWS Javascript SDK
问题 I'm using the AWS Javascript SDK and I'm following the tutorial on how to send an SQS message. I'm basically following the AWS tutorial which has an example of the sendMessage as follows: sqs.sendMessage(params, function(err, data) { if (err) { console.log("Error", err); } else { console.log("Success", data.MessageId); } }); So the sendMessage function uses a callback function to output whether the operation was successful or not. Instead of printing to the console I want to return a variable