-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-type.ts
More file actions
55 lines (43 loc) · 1.21 KB
/
data-type.ts
File metadata and controls
55 lines (43 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// 原始数据类型
// boolean
let isDone: boolean = true;
// boolean !== Boolean
// number
let decLiteral: number = 10;
let hexLiteral: number = 0xf00d;
let binLiteral: number = 0b01011;
let octalLiteral: number = 0o774;
let notANumber: number = NaN;
let infinityNumber: number = Infinity;
// string
let myName: string = 'zy';
// void
function alertName():void {
console.log("无法返回return")
}
let unusable: void = undefined;
// null and undefined
let n: null = null;
let u:undefined = undefined;
// let test1: number = undefined;
// let u2: undefined;
// test1 = null; // strict error
// test1 = u2; // error
// any
let anyThing: any;
anyThing = '12';
anyThing = 12;
anyThing = true;
// 未声明的变量默认都是任意值
let anyThing2 = 12;
// anyThing2 = 'as'; // 类型推论,首次未指定类型直接赋值会推测一个类型,但如果开始没有赋值,后面都不会进行类型检查
// Union Types
let anything: string | number;
anything = 98;
anything = 'av';
// anything = true; // 该变量的联合类型中并不包含boolean
// eg
function getLength(something: number | string): string {
// return something.length; // number上面不存在length
return something.toString()
}