14. this keyword - Javascript
this is a special keyword in JavaScript that refers to the object that is executing the current function. Its value depends on how the function is called.
this Used Alone (Global Context)
//In Node.js
console.log(this); // {} (return empty object)...
rajputayush.hashnode.dev2 min read