TypeScript
安装
1
| npm install -g typescript
|
HelloWorld
新建test.ts文件,添加如下内容:
1 2 3
| const hello : string = "Hello, TypeScript!" console.log(hello)
|
typescript不能直接被浏览器识别,需要使用tsc
命令编译生成js
文件后才能运行:
1 2
| tsc ./test.ts node test.js
|
- TypeScript区分大小写
- TypeScript中,分号是可选的,使用或者不使用都可以,以下代码都是正确的:
1 2
| console.log('Hello') console.log('TypeScript');
|
1 2 3 4 5 6 7
| class Site { name():void { console.log("GeekHall") } } var obj = new Site(); obj.name();
|
function
1 2 3 4 5 6 7 8 9
| (()=>{ function sayHi(str:string) { return 'Hello, ' + str }
let text = 'TypeScript' console.log(sayHi(text)) })()
|