es6 and typescript

Posted connie313

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es6 and typescript相关的知识,希望对你有一定的参考价值。

compile工具

ES6

const config = { entry: "./src/main.js", output: { filename: "bundle.js", path: path.resolve(__dirname, dist) }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader", options: [ presets: ["env"] ] } ] } }

typescript

 

promise怎么写

继承怎么写

 

其他异同

运行命令

vi /etc/profile

在文件的最后添加上:
export PATH="/你要的目录:$PATH"

保存和退出

最重要的是下面这步,运行命令

source /etc/profile
没报错则成功

以上是关于es6 and typescript的主要内容,如果未能解决你的问题,请参考以下文章

ES6-Proxy and Reflect

ES6-Set and Map

ES6 Maps and Sets:如何有效地索引对象键?

ES6 Syntax and Feature Overview(待续)

ES6 import and export

[Javascript] ES6 Class Constructors and the Super Keyword