标签: typescript tsc
Array.prototype.indexOf和Date.now。如果我编译存储在test.ts文件中的以下代码,那么为什么不运行Typescript?
Array.prototype.indexOf
Date.now
Date.now(); [1,2,3].indexOf(2);
我使用的命令是tsc -t es3 test.ts。生成的test.js与test.ts完全相同。
tsc -t es3 test.ts
答案 0 :(得分:3)
如果我编译存储在test.ts文件中的以下代码,为什么不运行Typescript?