es6 扩展运算符 三个点(...)
摘要:
1 含义扩展运算符( spread )是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。console.log(...[1, 2, 3])// 1 2 3console.log(1, ...[2, 3, 4], 5)// 1 2 ... 阅读全文
posted @ 2017-06-14 14:59 菜鸟Z 阅读(523) 评论(0) 推荐(0) 编辑
posted @ 2017-06-14 14:59 菜鸟Z 阅读(523) 评论(0) 推荐(0) 编辑