1. function f1() {
    2. console.log("f1函数开始");
    3. return function () {
    4. console.log("我是函数,但是此时是作为返回值使用的");
    5. }
    6. }
    7. var ff=f1();
    8. ff();

    image.png