Ver Mensaje Individual
  #7 (permalink)  
Antiguo 12/01/2014, 08:19
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses
Puntos: 1012
Respuesta: remover un item especifico de array

sí puedes usar delete con un array json
Cita:
Array.prototype.fnc = function(prop1, prop2, prop3, prop4) {
this.forEach(function(valor, indice, arr) {
if (valor[prop1] == 100 && valor[prop2] == 110 && valor[prop3] == 1078 && valor[prop4] == 10) {
delete arr[indice];
}

});
}

myarray.fnc('clave_estado', 'clave_municipio', 'id_articulo', 'id_comentario');

console.log(myarray);
https://developer.mozilla.org/en-US/...erators/delete
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}