陣列 (array) 是一個有序的序列,陣列中可以儲存不定數量的任何值,
陣列在 JavaScript 中屬於複合資料型態 (composite data type)。
let a = ['blue', 'yellow',,,'red'];
push (塞入資料至最後面)
let a = ['blue', 'yellow',,,'red'];
a.push('black');
unshift (插入資料至最前面)
let a = ['blue', 'yellow',,,'red'];
a.unshift('black');
pop (刪除後面)
let a = ['blue', 'yellow',,,'red'];
a.pop();
shift (刪除前面)
let a = ['blue', 'yellow',,,'red'];
a.shift();
刪除特定資料
陣列操作 GO