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