let obj = {
name: "Abhi",
age: 28,
info: function() {
console.log(`${this.name} is ${this.age} year's old`);//template literals used here
},
};
let obj1 = {
name: "Vikash",
age: 28,
};
obj.info.bind(obj1)(); //since bind methods return a new function so
//we can directly call that function[()] without pollouting global
//space while assigning a varibale to call that function.
//Always try to make global space neat n clean ,
//dont polloute while assigning unnecessary variables.