随笔分类 - javascript
javascript
摘要:01 Examples named function,aka a function declaration function brag(count) { return("I can do " + count + " pushups"); } brag(3) // I can do 3 pushups
阅读全文
摘要:添加 typescript 依赖和 tsconfig.json $ yarn tsc --init 其中 yarn tsc --init 使用本地刚安装的 typescript 初始化了一个 tsconfig.json 含有很多默认配置的文件 修改 tsconfig.json 为以下内容 (可自行配
阅读全文