ES6NewFeatures:介绍ES6的新功能

时间:2024-05-26 14:51:11
【文件属性】:

文件名称:ES6NewFeatures:介绍ES6的新功能

文件大小:18KB

文件格式:ZIP

更新时间:2024-05-26 14:51:11

JavaScript

ES6NewFeatures Introduce the ES6's new Features 星级说明:★★★ 推荐使用 ★★ 有考虑地使用 ★ 慎重地使用 ☆ 不使用 ##1.let:用法类似于var,用于声明变量。 推荐使用星级:★★★ 运行脚本:node src/1let.js 特性 块级作用域 暂时性死区 function f1() { let n = 5; let m = 40; if (true) { //console.log('inner n = ' , n); console.log('m = ',m); let n = 10; } console.log('n = ',n); } function f2() { var n = 5; if (true) {


【文件预览】:
ES6NewFeatures-master
----src()
--------13module.js(333B)
--------8setMap.js(773B)
--------2const.js(135B)
--------4string.js(735B)
--------11generator&promise.js(654B)
--------1let.js(417B)
--------13export.js(467B)
--------6object.js(701B)
--------11promise.js(1KB)
--------5function.js(686B)
--------7symbol.js(858B)
--------10generator.js(1KB)
--------12class.js(1KB)
--------9iterator.js(342B)
--------3destructuring.js(876B)
----.babelrc(27B)
----test3(0B)
----test11(0B)
----LICENSE(731B)
----ttt(0B)
----README.md(22KB)
----Jenkinsfile(304B)
----.gitignore(27B)
----package.json(415B)

网友评论