As many of you are aware, ECMAScript 6 is in its draft state now and is expected to be finalized some time this year. But it has already caught a lot of attention in the community and browsers have already started implementing it. We also have a number of transpilers like Traceur, 6to5, and many others that convert ES6 code to ES5 compatible code. Community members have started playing around with ES6 and many of them are blogging about what they learn. SitePoint’s JavaScript channel also has a good number of articles describing the different features of ES6.
Writing AngularJS Apps Using ES6
2016.08.29
暂无评论
相关文章推荐
- 背景全屏显示 全屏 给网页设置背景图片非常简单,但是当浏览器的宽高度变化之后,如何保证背景图片一直充满整个页面呢?比如像:http://www.lofter.com/。 实现方法 […]
- 学习笔记-Proxy Proxy-代理,在JS里就是对数据进行代理。 用proxy代理json数据 let data = { a: 100 }; let p = new Proxy(data, […]
- 使用CSS相对单位构建可缩放的组件 该篇为翻译文章,原文地址为:Building Resizeable Components with Relative CSS Units 这篇文章由 Ahmad […]
- 一起学习ES2015(ES6入门) 该篇为翻译文章,原文地址为:https://css-tricks.com/lets-learn-es2015/ 这篇文章的作者是Ryan […]
- CSS3-声波动画 你:声波动画,听起来一点都不厉害,放出来看看啊! 我:好吧,是不厉害。。。可是,你打我呀~你打我呀,哈哈 你:..... 实现方法 HTML 其实,声波就是 […]
- 学习React Router 该篇为翻译文章:原文为:Leveling Up With React: React Router 该系列文章目录: 第一部分:学习React Router(当前) […]
- React的“容器组件”和“可视化组件” 该篇为翻译文章:原文为:Leveling Up With React: Container Components 该系列文章目录: 第一部分:学习React […]
- Vue.js #4-Vuex 该篇为翻译文章:原文为:Intro to Vue.js: Vuex 该系列文章目录: Vue.js #1-渲染、指令、事件(原文) Vue.js […]
- Vue.js #2-组件、属性、Slots 该篇为翻译文章:原文为:Intro to Vue.js: Components, Props, and Slots 该系列文章目录: Vue.js […]
- ES6中的Promise 其实,我们以前在像jQuery这样的库当中都有用过Promise,它是用来处理一些异步操作的,jQuery当中的ajax内部使用的就是这种模式: $.ajax(...) […]
- 关于transitionend transitionend 所有添加了CSS3动画的元素都会有一个Transitionend事件,顾名思义,也就是当前元素的CSS3动画完成的时候执行一些操作。 下面 […]