While investigating google plusone scripts, I've seen following syntax many times:
(0, _.Em)();
Assuming _.Em
is a function the statement above would result in calling that function, that's pretty obvious. If, on the other hand, it would be undefined, wouldn't the result be the same as doing simply _.Em()
?
Can anyone shed a light on what's idea behind using such syntax?