<script> /* 异步请求 -- 都是使用回调函数的 */ /* 将函数内部的值返回到外部 */ function go(callback){ var a = 10; callback(a); } go(res=>{ console.log(res) }) </script>