xcatliu / typescript-tutorial

TypeScript 入门教程
https://ts.xcatliu.com
10.44k stars 1.33k forks source link

Hello TypeScript #150

Open xcatliu opened 4 years ago

xcatliu commented 4 years ago

https://ts.xcatliu.com/introduction/hello-typescript.html

Gen1usG commented 4 years ago

老顶了。。

AlaxLee commented 4 years ago

那么这个 hello.js 怎么执行呢?

xcatliu commented 4 years ago

@AlaxLee node hello.js

barry1102 commented 4 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢?

这个同志问的好

lywq9296 commented 3 years ago

这个文档是基于ts4.0吗

Espero1995 commented 3 years ago

全局安装 npm install -g typescript;然后就可以用ts-node xxx.ts来运行;也可以在vscode安装插件Codd Runner,这个就比较简单了,右键Run Code 即可。

eighteensss commented 3 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢? 好家伙 我踏马直接好家伙

baiwenhao commented 3 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢?

用意念执行即可...

realheng commented 3 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢?

这个钩也太直了

wg39711 commented 3 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢?

老兄,不要怕,我也不会

mike652638 commented 3 years ago
// hello.ts
function sayHello(person: String) {
  return `Hello ${person}`;
}

let randomIndex = Math.floor(Math.random() * 3);

let possibleArr = ['Mike', 123, { name: 'Mike' }];
// let possibleArr = ['Mike', undefined, null];

// 终究还是能骗过检查/编译是么 ? 
// let possibleArr = ['Mike'];

let person = possibleArr[randomIndex];
console.log(sayHello(person));

好家伙 !

ClishWang commented 3 years ago

@AlaxLee 那么这个 hello.js 怎么执行呢?

不用执行,看看就行