开发者问题收集
我是 Typescript 新手,不确定如何检查字符串参数是否为null。下面的concat函数被导出供其他 Typescript 模块使用。如果任一字符串参数为null,我希望生成错误消息。我这样做对吗?export const concat = (a: string, b: string) => {if ((typeof a === null) || (typeof b === null))