difference between functionName() and functionName.call() in javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:57:55Z http://stackoverflow.com/feeds/question/466116 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript 2 difference between functionName() and functionName.call() in javascript jonhobbs 2009-01-21T17:06:01Z 2009-01-21T17:26:39Z <p>Hopefully the title is self explanatory, what is the advantage of using the .call() method in Javascript compared with just writing functionName(); ?</p> http://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript/466124#466124 5 Answer by Ates Goral for difference between functionName() and functionName.call() in javascript Ates Goral 2009-01-21T17:08:22Z 2009-01-21T17:13:27Z <p>If you don't pass anything into <code>call()</code>, it will be the same; the function will be run with the same scope that the call to <code>call()</code> is made:</p> <pre><code>function test() { alert(this); } test(); // alerts the window object test.call(); // alerts the window object </code></pre> <p>But if you pass an object into <code>call()</code>, that object will be used as the scope:</p> <pre><code>test.call("hi"); // alerts "hi" </code></pre> http://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript/466128#466128 8 Answer by David Arno for difference between functionName() and functionName.call() in javascript David Arno 2009-01-21T17:09:14Z 2009-01-21T17:14:12Z <p><a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Function/call" rel="nofollow"><code>functionName.call()</code></a> takes an object instance as its first parameter. It then runs <code>functionName</code> within the context of that object instance (ie "this" is the specified instance)</p> http://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript/466206#466206 1 Answer by Jaime Febres for difference between functionName() and functionName.call() in javascript Jaime Febres 2009-01-21T17:26:39Z 2009-01-21T17:26:39Z <p>Let me show an example:<br/></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; var developerName = "window"; function test(){ var developer = function(developerName ){ this.developerName = developerName;} developer.prototype = { displayName : function(){alert(this.developerName );} } var developerA = new developer("developerA"); var developerB = new developer("developerB"); developerA.displayName();//will display an alert box with "developerA" as its inner text developerA.displayName.call();//will display an alert box with "window" as its inner text, in this case the context is the window object. developerA.displayName.call(developerB);//will display an alert box with "developerB" as its inner text } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="button" onclick="test()" value="display names"/&gt; &lt;body&gt; &lt;/html&gt; </code></pre> <p>Further reading:<br/> <a href="http://www.alistapart.com/articles/getoutbindingsituations" rel="nofollow">http://www.alistapart.com/articles/getoutbindingsituations</a></p> <p>Hope this helps.</p>