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
Post a Comment