var test=function test(){
document.write('a');
}
test();
document.write("<br>")
var demo=function (){
document.write('b');
}
demo();
document.write("<br>")输出换行