前端学习TypeScriptHello TypeScript本页总览Hello TypeScript一段简单的 Hello World 代码:const hello = (name: string) => { return `hello ${name}`;};hello(`xxx`);