Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Filtering Students by Exam Scores | Advanced Array Operations
course content

Contenido del Curso

JavaScript Data Structures

Challenge: Filtering Students by Exam ScoresChallenge: Filtering Students by Exam Scores

Task

Given an array of student objects, use the filter() method to create a new array called highScorers that includes only the students with exam scores greater than or equal to 90.

  • The original array is given as students, containing objects representing students with properties name and score.
  • Check if the student's score is greater or equal to 90.
  • Use the filter() method on the students array to create a new array, highScorers, that includes only the students with high scores.

Expected output:

The filter() method will create a new array by including only the elements that satisfy the condition specified in the callback function.

¿Todo estuvo claro?

Sección 5. Capítulo 4
course content

Contenido del Curso

JavaScript Data Structures

Challenge: Filtering Students by Exam ScoresChallenge: Filtering Students by Exam Scores

Task

Given an array of student objects, use the filter() method to create a new array called highScorers that includes only the students with exam scores greater than or equal to 90.

  • The original array is given as students, containing objects representing students with properties name and score.
  • Check if the student's score is greater or equal to 90.
  • Use the filter() method on the students array to create a new array, highScorers, that includes only the students with high scores.

Expected output:

The filter() method will create a new array by including only the elements that satisfy the condition specified in the callback function.

¿Todo estuvo claro?

Sección 5. Capítulo 4
some-alt