When I do a return in the console, Why does it output to the screen? I'm using chrome, but it probably does this in Firefox also. Is it assuming the console is the caller and there's a built-in function that echos the returned value?
function mike() {return "fsadf";}
mike()
"fsadf"