1 函数没有返回值,函数的默认执行结果是undefined
function fun1(){
}
console.debug() //undefined
2函数的返回值可以是一个函数
function fun2(){
return function(){
alert('hello');
}
}
//fun2()会返回一个函数体,在通过函数体调用函数
console.debug((fun2())()) //弹出hello
3函数的返回值可以是数字,字符串对象数组等.在函数中return语句后的代码将不再执行