Closed chokingwin closed 4 years ago
原文地址:访问联合类型的属性或方法
这个例子貌似有点小问题,返回值不能设置成 string 类型
function getString(something: string | number): string { return something.toString(); }
貌似没有问题呀 https://www.typescriptlang.org/play/index.html#code/GYVwdgxgLglg9mABAcwKZQMpQE4zMgCgGc4BbdACz2QC5EidrEAfRMEUgI1WwEo6GufIgDeAWABQiaYmzoQ2JCXJQq+AHRQ4WIYV4BuSQF9JkoA
OK,没毛病。😅
原文地址:访问联合类型的属性或方法
这个例子貌似有点小问题,返回值不能设置成 string 类型
function getString(something: string | number): string { return something.toString(); }