手机也能上课
1/10
第一个TypeScript文件
第一个TypeScript文件
在编辑器,将下面的代码输入到 hello.ts 文件里:
function hello(name: string) {
return "Hello ,"+name;
}
let userName = "Loen Wang";
document.body.innerHTML = hello(userName);
编译代码
在命令行上,运行TypeScript编译器:
tsc hello.ts
输出结果为一个hello.js
文件,它包含了编译生成后的JavaScript代码。
编译后的hello.js
function hello(name) {
return "Hello ," + name;
}
var userName = "Loen Wang";
document.body.innerHTML = hello(userName);
现在我们可以运行这个使用TypeScript写的JavaScript应用了!
在线编译:
您还可以在线编译 TypeScript代码片段 网址: https://www.typescriptlang.org/play/index.html