-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello-typescript.ts
93 lines (88 loc) · 2.11 KB
/
hello-typescript.ts
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* BirdWhisperer
* by 2gua
*/
//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
// | | \\\ - /// | |
// | \_| ''\---/'' |_/ |
// \ .-\__ '-' ___/-. /
// ___'. .' /--.--\ `. .'___
// ."" '< `.___\_<|>_/___.' >' "".
// | | : `- \`.;`\ _ /`;.`/ - ` : | |
// \ \ `_. \_ __\ /__ _/ .-` / /
// =====`-.____`.___ \_____/___.-`___.-'=====
// `=---='
//
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// 佛祖保佑 永无BUG
//
//
//
class BirdWhisperer1 {
private s: string;
chirping: string;
constructor(message: string) {
this.chirping = message;
}
chirp() {
return 'Ah~ oh~ ' + this.chirping;
}
}
let birdWhisperer = new BirdWhisperer1('coo-coo-coo...');
document.body.innerHTML = birdWhisperer.chirp();
let a: boolean = false;
let text: string = "adsfa";
let string: string = `测试加${text}`;
let array: Array<any> = [text, '111', 111];
let obj = { array1: array, as1: text };
console.log(obj);
var textnode = document.createTextNode(a ? `真的${text}` : `假的${text}`);
document.body.insertBefore(textnode, null);
console.log(array);
let { array1, as1 } = obj;
let o = {
a1: "foo",
b: 12,
c: "bar"
}
let { a1, b } = o;
interface point {
readonly x?: number,
y?,
}
let p: point = { x: 100, y: 1 };
let jr1: point;
let jr = { x: 111 }
jr1 = jr;
console.log(jr1.x);
console.log(p);
class age {
ages: number;
constructor(start, end) {
console.log(arguments);
this.ages = start + end;
}
getAges() {
return this.ages;
}
}
let s = new age(30, 1);
function arge(...agrs) {
console.log(s.ages);
console.log(s.getAges());
console.log(arguments);
}
arge(1, 2, 4, 5, 6);
const st: any = {};
var as: any = {};