JS Object Methods This Keyword

Object Method and This Keyword

  
const profile={
    name:'Aryan Kumar',
     age:20,
     sex:'Male',
     married:true,
     introduction:function(){
        console.log(`Hi I am ${this.age}`)
     }
 }
profile.introduction();

Comments

Popular posts from this blog

Js adding Modify and Deleting Properties

JS Rest Parameter

How to Add Social Media Share Buttons in Laravel?