I am using this JavaScript construct:
new Function('return true;')();
I wonder if there is a name for it (calling the newly created Function object directly).
I checked the precedence and it's ok.
I also wonder if this code will work in old browsers?