返回值就是函数的执行结果,js中函数可以没有返回值 使用return语句后,返回值后面的语句不会执行 function go(){ return "hello world"; console.log("good") } console.log(go()) 返回hello world