摘要: 「类型 + 方括号」表示法 示例 // ✅正确 const nums1: number[] = [1, 2, 3, 4] // ❌错误 // Type 'number' is not assignable to type 'string'. // 数组的项中不允许出现其它的类型 const nums 阅读全文
posted @ 2021-04-15 09:20 蓦然回首! 阅读(95) 评论(0) 推荐(0) 编辑