I was looking at a tutorial on writing a Lambda function in AWS using Node.js version 8. The template code shown in the tutorial when a new function is created looks like
exports.handler = async (event, context) => {
//
};
but when I create one in my console using Node.js 14.x runtime, there is no context parameter.
Will the anonymous function accept a context parameter? What is the significance of it not being included in the later version of Node.js?
context.