this.String = {
Get : function (val) {
return function() {
return val;
}
}
};
What is the ':' doing?
|
|
What is the ':' doing?
|
||
|
|
|
|
Others have already explained what this code does. It creates an object (called This function can be useful in cases where you need a higher order function (that is a function that expects another function as its argument). Say you have a function that does something to each element of an
What the Now, if you use this method a lot, you might continuously be calling
If for some reason you'd want to replace the entire array with the same string (but keeping the array of the same size), you could call it like so:
This will create a new array of the same size as Note that in some languages, this function is predefined and called Now, if you think that this example isn't very useful, I would agree with you. But there are cases, when programming with higher order functions, when this technique is used. For example, it can be useful if you have a tree you want to 'clear' of its values but keep the structure of the tree. You could do |
||
|
|
|
This answer may be a bit superflous since Tom's is a good answer but just to boil it down and be complete:-
Adds an object to the current object with the property name of
Returns a function from a closure which in turn returns the parameter used in creating the closure. Hence:-
In combination then:-
Adds an object to the current object with the property name of
|
||
|
|
|
|
It assigns an object that has a property "Get" to
That is, |
||||
|
|
|
I'm not sure, because I haven't seen a construct like this before, but I'm guessing the first function returns a function that simply returns the parameter passed to the first function. And that is wrapped inside of a getter for this.String, WTF? Does this even work ? :-) Is there a larger context you can show us? |
||
|
|
|
So, per the example, you would call the function like this
More examples:
|
||||||||
|