# 2022-10 TypeScript
# 一、TypeScript 基本类型
primitives
不知道翻译为基本类型准不准确文档 (opens new window)。主要是在写 ts 代码,指明类型的时候,经常疑惑 String
和 string
用哪个。应该用 string
。
let strA: string = 'strA'
let strB: String = 'strB' // 看起来好像并没有区别
1
2
2
primitives
不知道翻译为基本类型准不准确文档 (opens new window)。主要是在写 ts 代码,指明类型的时候,经常疑惑 String
和 string
用哪个。应该用 string
。
let strA: string = 'strA'
let strB: String = 'strB' // 看起来好像并没有区别