我们有 Null 合并运算符.NET
,我们可以使用如下
string postal_code = address?.postal_code;
我们可以在 React JS 中做同样的事情吗?
我发现我们可以用 && 运算符做
在address.ts文件中
string postal_code = address && address.postal_code;
我需要的 .net 功能可以在带有 React JS 的打字稿中实现,这可能吗?
就像是:
string postal_code = address?.postal_code // I am getting the error in this line if I try to use like .NET