闭包2019-06-10

//闭包 python java c c++ c#

    function a(){

console.log("this is a");

function b(){

console.log("this is b");

}

return b;

}

a()();

你可能感兴趣的:(闭包2019-06-10)