iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 7
1
自我挑戰組

JavaScript Array x 學習筆記系列 第 7

[Day 07 | Array.prototype.unshift () ]

  • 分享至 

  • xImage
  •  

Blue Monday...就來點簡單的吧

今天介紹的是array.unshift
array.unshiftarray.shift
算是一對兄弟檔,一個負責插入資料,一個負責拿取資料

array.unshift 使用方式其實跟 array.push 一樣,
主要功能是把資料插入陣列中

兩者的差異則是
array.unshift 是從陣列前端插入資料
array.push 是從陣列後端插入資料


Syntax

array.unshift(element1,.....,element2);

Example

程式碼如下:

let colors = ['blue', 'yellow', 'red', 'orange']

colors.unshift('gary', 'white'); 
console.log(colors)

上一篇
[Day 06 | Array.prototype.shift () ]
下一篇
[Day 08 | Array.prototype.slice () ]
系列文
JavaScript Array x 學習筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言