function a(){ var b=10; (function(s){ s(b); }) (s); } a(); function s(b){ console.log(b); } 我想知道每一步的运行是怎样的 查看完整描述