I just found out that when you call toString() on a javascript function, as in myFunction.toString(), the source code of that function is returned.
myFunction.toString()
If y
A nice use case is remoting. Just toString the function in the client, send it over the wire and execute it on the server.