I've a code:
var myFn = function(){
//some code
}
myFn();
So I have to define a function, then run it in two rows. Is there a way to define a function (with storage it in variable) and run it instantly, in one expression? Just a short way of this.