When discussing the difference between arrow functions and regular (or traditional) functions?
Syntax:
Regular Function:
function regularFunction(parameter) {
// function body
}
Arrow Function:
const arrowFunction = (parameter) => {
// function body
};
this Binding:
Regular Function:
Has its own this binding, which is...