| method call and method apply | ตัวอย่างของการใช้ method call และ method apply |
|---|
subject:method call and method apply
content:ตัวอย่างของการใช้ method call และ method apply var man = { name: "rooney" }; var boy = { name: "giggs" }; var girl = { name: "victoria" }; window.name = "function"; function showName () { return this.name; } man.toString = showName; alert ( showName () ); // show function alert ( man.toString () ); // show rooney alert ( showName.call ( boy ) ); // show giggs alert ( showName.apply ( girl ) ); // show victoria