came across a code like this today:
(0, eval)( "1+1" ); //2
so I copied one:
( 0, function( a ) {
console.log( a ); //"hello world"
} )( "hello world" );
( function( a ) {
console.log( a ); //
}, function( b ) {
console.log( b ); //"hello world"
} )( "hello world" );
instant? Fly by, which god can explain?