Esta inquietud se puede tratar de diferentes maneras, por lo tanto te damos la que para nosotros es la solución más completa.
Ejemplo 1: compruebe si el objeto está presente en array javascript
//Use something like this:functioncontainsObject(obj, list)var i;for(i =0; i < list.length; i++)if(list[i]=== obj)returntrue;returnfalse;//In this case, containsObject(car4, carBrands) is true. Remove the carBrands.push(car4); call and it will return false instead. If you later expand to using objects to store these other car objects instead of using arrays, you could use something like this instead:functioncontainsObject(obj, list)var x;for(x in list)if(list.hasOwnProperty(x)&& list[x]=== obj)returntrue;returnfalse;
Ejemplo 2: registrar objeto array javascript
var obj =a:5;var array =[obj,"string",5];// Must be same object
array.indexOf(obj)!==-1// True
Reseñas y puntuaciones
Te invitamos a favorecer nuestro ensayo ejecutando un comentario y dejando una valoración te damos la bienvenida.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)