[JAVASCRIPT]Array陣列處理常用的方法

如標題


//array 移除某一格項目
https://stackoverflow.com/questions/9792927/javascript-array-search-and-remove-string

https://stackoverflow.com/questions/5767325/how-can-i-remove-a-specific-item-from-an-array

 

//切割陣列
var aa = "1,2".split(',');

//新增到陣列
var aa = "1,2".split(',');
aa.push('666');

//檢查陣列項目是否存在
https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf
 

以上文章僅用紀錄資料使用.....