I would like to do something like this :
var f = Function;
var f1 = f(){
//do stuff
}
f1(); // call f1 as a function
The main idea is to create a new name and a new way to create a function : instead of doing function a() do f a().
Thanks in advance.
Functionneeds to be called to create new functions from code.f1 = () -> ;