我的第一天

我啥也不会

1
2
3
4
5
6
7
8
9
10
11
12
13
let hePeng = function () {
console.info('我啥也不会')
return () => {
console.log('前端太难了')
return () => {
console.error('加班加到屎')
return () => {
console.table('我只想摸鱼')
}
}
}
}
hePeng()()()()