视频位置 TypeScript快速梳理_上篇 18:57

假设定义变量a

在 js 中的写法:

let a

在 ts 中的写法:

let 变量: 类型

E.g 将变量a定义为字符串类型

let a: string