In Node.js, the value of this
depends on the context in which a function is executed. In regular functions, this
refers to the global object (or undefined in strict mode), while in arrow functions, this
retains the context from the enclosing lexical scope. Understanding this is crucial for event handling and callbacks.