Array.prototype.append = function(str) {
var newArr = new Array(str);
return this.concat(newArr)
}
Array.prototype.remove = function(str) {
var retArr = new Array();
for(i = 0; i if(this[i] != str) retArr = retArr .append(this[i]);
}
return retArr;
}
Array.prototype.hasItem = function(str) {
for(var i = 0; i if(this[i] == str) {
return true
}
}
false 반환;
팁: JavaScript에는 add가 없지만 push 및 unshift 메서드가 있지만, pop 및 Shift 메서드가 없으면 splice 메서드도 있습니다.