var hh = 5;
function a(){console.log(hh)};
function b(){a()};
function c(){return a()};b();c();
都是输出5
长风秋雁
相关分类