typescript data怎么创建
时间: 2023-10-17 13:10:05 浏览: 89
typescript资料
TypeScript是一种静态类型的编程语言,它可以创建数据类型和变量。以下是创建数据类型和变量的示例:
1. 创建基本数据类型:
```typescript
// 布尔类型
let isDone: boolean = false;
// 数字类型
let decimal: number = 6;
// 字符串类型
let color: string = "blue";
```
2. 创建数组类型:
```typescript
// 数字数组
let list: number[] = [1, 2, 3];
// 字符串数组
let fruits: string[] = ["apple", "banana", "orange"];
```
3. 创建元组类型:
```typescript
// 元组类型
let tuple: [string, number] = ["hello", 123];
```
4. 创建枚举类型:
```typescript
// 枚举类型
enum Color {Red, Green, Blue}
let c: Color = Color.Green;
```
5. 创建任意类型:
```typescript
// 任意类型
let notSure: any = 4;
notSure = "maybe a string instead";
notSure = false;
```
6. 创建空类型:
```typescript
// 空类型
function warnUser(): void {
console.log("This is my warning message");
}
```
阅读全文