Upgrade to Pro — share decks privately, control downloads, hide ads and more …

This in JavaScript

Dhananjay Kumar
December 14, 2024
72

This in JavaScript

This is a deck from Dhananjay Kumar's presentation on this in JavaScript

Dhananjay Kumar

December 14, 2024
Tweet

Transcript

  1. function Product(title,price){ this.title = title; this.price = price; } Product.prototype.owner

    = "foo"; Product.prototype.displayProduct = function(){ console.log(this); } let p1= new Product("p1",900); let p2 = new Product("p2",700); p1.displayProduct = function(){ console.log(this); console.log(this.owner); } p1.displayProduct(); p2.displayProduct(); p1.displayProduct.call(p2);
  2. @debug_mode Dhananjay Kumar ✓ Founder of Nomadcoder ✓ [email protected]

    +91-9717098666 ✓ Reach out to use for Training and consulting
  3. Agenda @debug_mode ✓ Find various ways to calculate value of

    ‘this’ inside a function ✓ Object prototypes ✓ Various Invocation Patterns ✓ FIP ✓ CIP ✓ MIP ✓ IIP
  4. @debug_mode In object-oriented programming languages, this is a variable which

    refers to the current object But, for the JavaScript , below definition of ‘this’ is not true,
  5. @debug_mode ‘this’ Depends on how the function is called Does

    not depend on how the function is created * JavaScript determines the value of ‘this’ inside a function based on the way the function is called
  6. Invocation Patterns @debug_mode 1. Function Invocation Pattern 2. Constructor Invocation

    Pattern 3. Method Invocation Pattern 4. Indirect Invocation Pattern
  7. There are four invocation patterns @debug_mode There are four ways

    a function can be called There are 4 ways value of ‘this’ can be calculated inside a function
  8. Function Invocation Pattern @debug_mode ✓ Function is invoked as a

    function ✓ Value of ‘this’ is always the global object
  9. @debug_mode Function Invocation Pattern function Product(title,price){ this.title = title; this.price

    = price; console.log(this); // global object return 9; } let p1 = Product(); // called as a function console.log(p1); // 9
  10. Constructor Invocation Pattern @debug_mode ✓ Function is called using ‘new’

    ✓ Function acts as a constructor and returns newly created object ✓ Value of ‘this’ is the newly created object
  11. @debug_mode Constructor Invocation Pattern function Product(title, price) { this.title =

    title; this.price = price; console.log(this); // newly created object return 9; } let p1 = new Product('Pen', 1000); // called as a constructor console.log(p1); // newly created object
  12. Method Invocation Pattern @debug_mode ✓ Function is invoked as a

    method ✓ Function is part of an object ✓ Value of ‘this’ is always the object used to call the method
  13. @debug_mode Method Invocation Pattern var Product = { title: 'Pen',

    price: 900, displayProduct: function () { console.log(this); // Product Object return 9; } } let p1 = Product.displayProduct(); // called as a method console.log(p1); // 9
  14. Indirect Invocation Pattern @debug_mode ✓ Function is invoked indirectly using

    apply, call, or bind method ✓ Value of ‘this’ is manually passed as first parameter of apply and call ✓ New object is created and passed as value of ‘this’ for the bind
  15. @debug_mode Indirect Invocation Pattern var Car = { color: 'red',

    owner: 'foo', price: 1000 } function Product(title, price) { this.title = title; this.price = price; console.log(this); // Car object with passed title and price properties return 9; } let p2 = Product.apply(Car, ['Pen', 1000]); // Indirectly called using apply let p1 = Product.call(Car, 'Pencil', 700); // Indirectly called using call console.log(p1); // 9 console.log(Car); // only one Car object
  16. @debug_mode this FIP global object CIP newly created object MIP

    object calling method IIP manually passed
  17. @debug_mode So far, we have learnt that value of this

    inside a function depends on how a function is invoked But there is a catch , However, it also depends on the type of the function or how the function is created
  18. 4 ways of creating a function @debug_mode 1. Function Declaration

    2. Function Expression 3. Arrow function 4. Function created using function constructor
  19. @debug_mode Depends on the Invocation Pattern Function Constructor Function Expression

    function Declaration Arrow function Does not have its own ‘this’ Inherits from the enclosing scope
  20. @debug_mode Arrow function var Car = { color: 'red', owner:

    'foo', price: 1000 } var displayProduct = (title, price) => { this.title = title; this.price = price; console.log(this); // object of the execution context return 9; } var a = displayProduct('Pen', 900); // add to current context console.log(a); // 9 console.log(this); // current context this.owner = "dj"; console.log(this); displayProduct.call(Car, 'Pencil', 900); // will call and pass undefined, console.log(this); // context object updated with pencil and 900 console.log(Car); // car object
  21. function Product(title,price){ this.title = title; this.price = price; } Product.prototype.owner

    = "foo"; Product.prototype.displayProduct = function(){ console.log(this); } let p1= new Product("p1",900); let p2 = new Product("p2",700); p1.displayProduct = function(){ console.log(this); console.log(this.owner); } p1.displayProduct(); p2.displayProduct(); p1.displayProduct.call(p2);
  22. @debug_mode Thank you Questions Resources Book – You don’t know

    JavaScript by Kyle Simpson Book – JavaScript for Impatient Programmer by Dr Axel Rauschmayer Blog - https://debugmode.net/category/javascript-2/ [email protected]