AWS - Lambda
Consider this Node.js Lambda handler:
If event.value is 5, what is the output?
exports.handler = async (event) => {
console.log('Processing');
return event.value + 10;
};If event.value is 5, what is the output?
