// 1. Call( ) Method // eg-1: const student1={ name:"Ashish", printName:function(){ console.log(this.name); } } student1.printName() const student2={ name :"Paul" } student1.printName.call(student2); // eg-2: