difference between functionName() and functionName.call() in javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T15:57:55Zhttp://stackoverflow.com/feeds/question/466116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript2difference between functionName() and functionName.call() in javascriptjonhobbs2009-01-21T17:06:01Z2009-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#4661245Answer by Ates Goral for difference between functionName() and functionName.call() in javascriptAtes Goral2009-01-21T17:08:22Z2009-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#4661288Answer by David Arno for difference between functionName() and functionName.call() in javascriptDavid Arno2009-01-21T17:09:14Z2009-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#4662061Answer by Jaime Febres for difference between functionName() and functionName.call() in javascriptJaime Febres2009-01-21T17:26:39Z2009-01-21T17:26:39Z<p>Let me show an example:<br/></p>
<pre><code><html>
<head>
<script type="text/javascript">
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
}
</script>
</head>
<body>
<input type="button" onclick="test()" value="display names"/>
<body>
</html>
</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>