Array.prototype.remove = function(idx) { return (idx<0 || idx>this.length) ? this : this.slice(0, idx).concat(this.slice(idx+1, this.length)); };
'웹 개발' 카테고리의 다른 글
Eclipse에서 SVN Connector 설치 안되는 현상.. (10) | 2017.09.01 |
---|---|
Maven Ant Tasks (0) | 2013.06.18 |
같은 소스, 같은 브라우저, 다른 서버, 다른 결과 (0) | 2013.06.17 |
script에서 trim 사용하기. (0) | 2012.11.05 |
Google Analytics Script API (0) | 2012.03.07 |