fe-interview
fe-interview copied to clipboard
实现一个 function counter(),全局下每次调用返回值 +1
const counter = ((count) => () => count++)(0);