Open xcatliu opened 4 years ago
老顶了。。
那么这个 hello.js 怎么执行呢?
@AlaxLee node hello.js
@AlaxLee 那么这个 hello.js 怎么执行呢?
这个同志问的好
这个文档是基于ts4.0吗
全局安装 npm install -g typescript;然后就可以用ts-node xxx.ts来运行;也可以在vscode安装插件Codd Runner,这个就比较简单了,右键Run Code 即可。
@AlaxLee 那么这个 hello.js 怎么执行呢? 好家伙 我踏马直接好家伙
@AlaxLee 那么这个 hello.js 怎么执行呢?
用意念执行即可...
@AlaxLee 那么这个 hello.js 怎么执行呢?
这个钩也太直了
@AlaxLee 那么这个 hello.js 怎么执行呢?
老兄,不要怕,我也不会
// 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));
好家伙 !
@AlaxLee 那么这个 hello.js 怎么执行呢?
不用执行,看看就行
https://ts.xcatliu.com/introduction/hello-typescript.html