return a;
document.write(a);
有什么区别?
document.write 是不是只能输出被赋值的变量?
document.write是在界面上显示出来,return是函数的返回值,document.write 只能输出被赋值的变量,如果没有被赋值那它会输出undefined