In a javascript file I saw:
function Somfunction(){
var that = this;
...
}
What does this do precisely?
|
In a javascript file I saw:
What does this do precisely? |
|||
|
|
|
I'm going to illustrate this with a jQuery example, because that will be clear. The issue is the same with any Javascript code, however.
Because Personally, I dislike the use of |
|||||||||||||||||||
|
|
From Crockford
|
|||||||||||||||||
|
|
This is a hack to make inner functions (functions defined inside other functions) work more like they should. In javascript when you define one function inside another
This is specifically a problem when you create a function as a method of an object (like Creating a variable to use by convention in both scopes is a solution for this very general problem with javascript (though it's useful in jquery functions, too). This is why the very general sounding name Like El Ronnoco hints at Douglas Crockford thinks this is a good idea. |
|||
|
|