Ir al contenido principal

Entradas

Mostrando entradas de mayo, 2015

Eliminar elemento de un Array, Especificando el valor

Array. prototype . remByVal = function ( val ) {     for ( var i = 0 ; i < this . length ; i ++ ) {         if ( this [ i ] === val ) {             this . splice ( i , 1 );             i -- ;         }     }     return this ; } //Call like [ 1 , 2 , 3 , 4 ]. remByVal ( 3 );