const closure = () => {
        // 补全代码
        let count = 1;
        return function () {
          return count++;
        };
      };