是否有任何糖可以确保 map 不会使用可选链接/ nullishcoalescing 之类的工具出现类型错误?
let x = {y: 1, z: 2};
x?.map(i => i); // Typeerror
Array.isArray(x)?.map(i => i); // Typeerror
let y = '1234';
y?.length && y.map(i => i) // Typeerror
是否有任何糖可以确保 map 不会使用可选链接/ nullishcoalescing 之类的工具出现类型错误?
let x = {y: 1, z: 2};
x?.map(i => i); // Typeerror
Array.isArray(x)?.map(i => i); // Typeerror
let y = '1234';
y?.length && y.map(i => i) // Typeerror