네이티브 js의 Array 클래스 확장
6595 단어 array
/**************** ********************/
Array.prototype.add = function(item) {
this.push(item);
}
Array.prototype.addRange = function(items) {
var length = items.length;
if (length != 0) {
for (var index = 0; index < length; index++) {
this.push(items[index]);
}
}
}
Array.prototype.clear = function() {
if (this.length > 0) {
this.splice(0, this.length);
}
}
Array.prototype.isEmpty = function() {
if (this.length == 0)
return true;
else
return false;
}
Array.prototype.clone = function() {
var clonedArray = [];
var length = this.length;
for (var index = 0; index < length; index++) {
clonedArray[index] = this[index];
}
return clonedArray;
}
Array.prototype.contains = function(item) {
var index = this.indexOf(item);
return (index >= 0);
}
Array.prototype.dequeue = function() {
return this.shift();
}
Array.prototype.indexOf = function(item) {
var length = this.length;
if (length != 0) {
for (var index = 0; index < length; index++) {
if (this[index] == item) {
return index;
}
}
}
return -1;
}
Array.prototype.insert = function(index, item) {
this.splice(index, 0, item);
}
Array.prototype.joinstr = function(str) {
var new_arr = new Array(this.length);
for (var i = 0; i < this.length; i++) {
new_arr[i] = this[i] + str
}
return new_arr;
}
Array.prototype.queue = function(item) {
this.push(item);
}
Array.prototype.remove = function(item) {
var index = this.indexOf(item);
if (index >= 0) {
this.splice(index, 1);
}
}
Array.prototype.removeAt = function(index) {
this.splice(index, 1);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
CloudFirestore의 array를 사용해보기CloudFirestore의 array를 사용하고 있는 기사가 별로 발견되지 않았으므로, 비망록적으로 남겨 둔다. 기재할 것 CloudFirestore 필드의 배열 유형 사용 (이번에는 추가) 기재하지 않는 것 Fi...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.