Javascript Apply Method tutorial in Hindi

Apply Method in Javascript

apply method के जरिए javascript function को किसी object में इस्तेमाल कर सकतें हैं |

apply method, call method की तरह होता है | पर इसमें arguments को array के जरिए पास की जाती है |

Syntax: object1.function1.apply(object2, [arg1,arg2…]);

उदाहरण:

<script>
    const object1 = {
       name: "maya",
       city: "delhi",
       setvalue : function(par1,par2){
       console.log(`My name is '${this.name}' and I am staying at '${this.city}' and I love to read ${par1} and ${par2}`);
       }
    }      
    const object2 = {
       name: "Ritu",
       city: "Ajmer"   
    }
    
  object1.setvalue.apply(object2, ['novel', 'story']);
</script>

output:

javascript apply method

अन्य javascript tutorial के सुझाव