¿Cómo cambiar esto a compras estrictas == ?
if (this.Name) { conditions.push(this.filterName); } filterName(item) { return item.name.toString().includes(this.Name); }solo compara dos nombres
filterName(item) { return item.name.toString() === this.Name; }