I've noticed in javascript that if you define a function, say myfunction(), and then call myfunction.toString() you get the text of the source for that function. Are there any interesting/real world uses of this?
|
1
|
|
|
|
|
|
Well, you can use it to easily redefine a function:
This will alert the string "hello" instead of the string "asdf". This may be useful. On the other hand, self modifying code is often frowned upon because of the difficulty to maintain it... |
||||||||
|
|
|
I think this is essentially used for debugging purposes... |
||||||
|
|
|
One real-world example is in Prototype, which uses this to determine the names of the arguments to methods in subclasses to see if it should do its special superclass handling stuff (which involves the special argument |
||||||
|
|
|
apart from the usefulness of getting the content of a function as a string, or ensuring that the type of whatever you're working is a string (for non coercive comparisons), check out the optional radix parameter that can be used. radix Optional. Specifies a radix for converting numeric values to strings. This value is only used for numbers.
The following example illustrates the use of the toString method with a radix argument. The return value of function shown below is a Radix conversion table.
|
||
|
|
I've used it to automatically generate named-parameter versions of functions. For example, if you have a function
you can extract the parameter names from
Here's an implementation of this idea:
I have a slightly more flexible implementation of this that can go the other direction ( |
||
|
|
