JavaScript question: what’s the printed value? February 27, 2010javascriptjavascript, questionStoimen var a = function() { alert(arguments[0]) } (1,2,3);var a = function() { alert(arguments[0]) } (1,2,3); What’s the alerted value and how that works?