화면구현/HTML 55

공장식객체생성2 - javaScript ArrayList

ArrayList 1. add() 공장식객체생성2 2. get(), set() ArrayList.prototype.get = function (p_index) { return this[p_index]; } ArrayList.prototype.set = function (p_index) { this[p_index] = p_index; } 3. remove, clear ※ remove 배열에서는 값만 사라짐 ※ clear 속성의 수만큼 지워줌 ArrayList.prototype.remove = function (p_index) { delete this[p_index]; this.length--; } ArrayList.prototype.clear = function () { for (var i = 0; i <..

화면구현/HTML 2020.08.07