iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 11
0

Spread

最後來介紹 spread,以往我們要列出陣列或者物件裡的值,需要使用 map() 或 loop 一個一個挑出來然後印出來,實在是很麻煩。
在ES6裡多了 Spread, Spread 就是 ...,用來代表陣列或物件裡面的值。

// spread a string
const name = [...'ithome'];
console.log(name);
// 'i', 't', 'h', 'o', 'm', 'e'

const categories = ['Security', 'Modern Web', 'Data Tech', 'Software Development', 'DevOps', 'Machine Learning'];
console.log(...categories);
// Security Modern Web Data Tech Software Development DevOps Machine Learning

上一篇
ES6 (3)
下一篇
React
系列文
如何在前端開發流程中加入使用者經驗設計 - 以線上相簿為例30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言