Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

174
Vistas
How to filter from constructor function the array in it?

I'm making a javascript course and I'm trying to create a function that filters from the array and removes a given value of it. NOTE: I've to use the filter() method.

I've tried several ways but without success. What am I doing wrong?

Here the code:

function Student(id, name, subjects = []) {
  this.id = id;
  this.name = name;
  this.subjects = subjects;  
}

Student.prototype.addSubject = function(subject) {
  this.subjects = [...this.subjects, subject];   
}

Student.prototype.removeSubject = function(remove) {
    this.subjects.filter(function(remove) {
        return this.subjects !== remove
    })
}

const student1 = new Student(1, 'Reed');

student1.addSubject('Math');
console.log(student1.subjects);
student1.removeSubject('Math');
console.log(student1.subjects)

Appreciate your time

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

filter doesn't modify the array, it returns a new one. this.subjects = this.subjects.filter plus a change in how you filter:

function Student(id, name, subjects = []) {
  this.id = id;
  this.name = name;
  this.subjects = subjects;  
}

Student.prototype.addSubject = function(subject) {
  this.subjects = [...this.subjects, subject];   
}

Student.prototype.removeSubject = function(remove) {
    this.subjects = this.subjects.filter(function(current) {
        return current !== remove
    })
}

const student1 = new Student(123,'pepe')

student1.addSubject('a');
student1.addSubject('Math');
student1.addSubject('b');
student1.addSubject('c');
console.log(student1.subjects);
student1.removeSubject('Math');
console.log(student1.subjects)

about 4 years ago · Juan Pablo Isaza Denunciar

0

You can use .push() and .splice() to modify the subjects array in-place, instead of re-creating it for every modification, which a) is a waste and b) can cause difficult-to-find bugs.

But you absolutely should create a new array at the point of object creation, to avoid inadvertently modifying the subjects parameter outside during the lifetime of the Student instance.

function Student(id, name, subjects = []) {
  this.id = id;
  this.name = name;
  if (!Array.isArray(subjects)) throw new Error("subjects must be an array");
  this.subjects = [...subjects];
}

Student.prototype.addSubject = function (subject) {
  this.subjects.push(subject);   
}

Student.prototype.removeSubject = function (subject) {
  const pos = this.subjects.indexOf(subject);
  if (pos > -1) this.subjects.splice(pos, 1);
}

const student1 = new Student(1, 'Reed');

student1.addSubject('Math');
console.log(student1.subjects);
student1.removeSubject('Math');
console.log(student1.subjects)

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda