サンプル - pre要素

JavaScript配列において任意の位置を削除する関数。

Array.prototype.pointDel = function( point )
{
        var first = this.slice(0,point);
        var last = this.slice(point+1,this.length);
        return first.concat(last);
}

pre要素解説へ戻る