javascript riddle
same rules as before – figure out what each line does without running the code. bonus points for being able to clearly explain what happens, and why.
>var a_function = function (){}; >a_function.test = "a test"; >a_function.name = "a name test"; >a_function.test === "a test"; >a_function.name === "a name test";
[More programming riddles]