<html><head><script>var person ={Name:"John",Department:"Finance",
fullName:function(){returnthis.Name+" is from "+this.Department+" Department";}}var myObject ={Name:"Amit",Department:"Marketing",}
x = person.fullName.call(myObject);
document.write(x);</script></head><body></body></html>