码迷,mamicode.com
首页 > 其他好文 > 详细

ES6/5比较

时间:2016-09-23 15:03:45      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

 
ES6
function f (x, y, ...a) {
    return (x + y) * a.length
}
f(1, 2, "hello", true, 7) === 9

ES5
function f (x, y) {
    var a = Array.prototype.slice.call(arguments, 2);
    return (x + y) * a.length;
};
f(1, 2, "hello", true, 7) === 9;

 

ES6/5比较

标签:

原文地址:http://www.cnblogs.com/douglasvegas/p/5899854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!