AWS - Lambda
Given this Node.js Lambda code snippet:
If the environment variable
exports.handler = async () => {
return process.env.MY_VAR || 'default';
};If the environment variable
MY_VAR is set to hello, what will the function return?