为什么一些 js/ts 的函数工具库没有类似 optional/maybe 的东西 2022-03-08 经典的const a = doSth()if(a) { const b = doOtherThing(a) if (b) { ... return xxx }}return y…