HTML陣列的基本操作 增刪改查 刪除重複元素

2021-09-19 03:40:05 字數 1129 閱讀 7317

一、建立陣列

var testarray = new array();

二、陣列中新增元素

1)在陣列的開頭新增新元素 - unshift()

//結果:

2)在陣列的第2位置新增乙個元素 - splice()

fruits.splice(2,0,"lemon","kiwi");

//結果:

//分析:

//index 必需。整數,規定新增/刪除專案的位置,使用負數可從陣列結尾處規定位置。

//howmany 必需。要刪除的專案數量。如果設定為 0,則不會刪除專案。

//item1, ..., itemx可選。向陣列新增的新專案。

3)陣列的末尾新增新的元素 - push()

fruits.push("kiwi")

//結果:

三、判斷元素是否在陣列內

function contains(arr, obj)     

}

return false;

} //使用

var arr = new array(1, 2, 3);

contains(arr, 2);//返回true

contains(arr, 4);//返回false

四、刪除指定值元素

function removebyvalue(arr, val) ;  

for (var i = 0, elem; (elem = arr[i]) != null; i++)

} return result;

}//使用

var arr = [1,2,2,3,7,8,5,4,4,3,6,2,1];

console.log(unique(arr));

//結果:

//1,2,3,7,8,5,4,6

增刪改查基本操作

增加 建立資料庫 create database database name 建立資料庫中的表單 create table table name 列1 資料型別,列2 資料型別,列3 資料型別 往表單中新增資料 insert into table name values 1 2 3 刪除 刪除資料庫...

陣列的增刪改查操作

新增 push 預設新增至陣列最後 unshift 向陣列開頭新增乙個或多個元素,並返回新的陣列長度 刪除 shift 刪除第一條資料 pop 刪除最後一條資料 splice 起始下標,結束下標不包括自己 刪除中間的某條資料 替換 splice 起始下標,刪除多少項,替換的新資料 例子 arr5.s...

mongodb增刪改查基本操作

mongodb資料庫基本用法 查詢 1.條件操作符的使用,日期格式的查詢,長度 db.getcollection interougeproduct find interougestockmaps 2.查詢列只顯示指定字段 1 表示展示,0表示隱藏 db.getcollection interouge...