I've seen a lot of idioms, most of them clever and logical once explained. But while I was looking over SO's javascript to get some ideas about good interface design I saw the following line:
initTagRenderer("".split(" "), "".split(" "));
Which really threw me for a loop. Obviously, they initialize the tag renderer with two arrays containing exactly one null-string argument (or [""], which "".split(" ") evaluates to). That part I understand (having done the same thing in my own code). But it seems like passing a literal would accomplish the same thing.
Is there some non-obvious reason for doing this that I'm failing to see as a newcomer (to js, not programming)?
Also, I did try searching, and got lots of info on split() itself (which I already understand quite well), but not the idiom; Googling for double quotes is pretty fruitless.
Edit: It was the obvious answer. This part of the code is dynamically generated, and is not usually populated on SO proper.
function initTagRenderer(f,c){window.tagRenderer||(window.tagRendererRaw=function(b,g){var g=g||"",e="";g||(f&&-1<$.inArray(b,f)?e=" required-tag":c&&-1<$.inArray(b,c)&&(e=" moderator-tag"));return"<a class='post-tag"+e+"' href='"+g+"/questions/tagged/"+encodeURIComponent(b)+"' title=\"show questions tagged '"+b+"'\" rel='tag'>"+b+"</a>"},window.tagRenderer=function(b,c){return $(tagRendererRaw(b,c))})}– Wesley Murch Mar 18 '12 at 4:07