Filters Using Javascript

Hello Fellow Developers in this blog we are going to talk about a powerful array property filter.

JavaScript arrays are a powerful tool for working with data, and one of the most commonly used methods for manipulating arrays is the filter() function. This method allows you to create a new array with all elements that pass a certain test, and is particularly useful when working with large datasets.

The filter() method takes two arguments: a callback function and an optional thisArg. The callback function is called on each element of the array, and if it returns true, the element is included in the new array. The thisArg argument is used to set the value of the this keyword inside the callback function, but is optional and not commonly used.

Here is an example of using the filter() method to create a new array with all elements that are greater than 5:

var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var greaterThanFive = numbers.filter(function(number) {
  return number > 5;
});
console.log(greaterThanFive); // [6, 7, 8, 9, 10]

In this example, the filter() method is called on the “numbers” array and the callback function checks if each element is greater than 5. If it is, it is included in the new “greaterThanFive” array.

It’s also possible to use arrow function as callback

var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var greaterThanFive = numbers.filter(number => number > 5);
console.log(greaterThanFive); // [6, 7, 8, 9, 10]

The filter() method can also be used to filter objects in an array. In this example, we’ll use the filter() method to create a new array with all objects that have a certain property:

var people = [
  { name: "John", age: 30 },
  { name: "Jane", age: 25 },
  { name: "Bob", age: 35 },
  { name: "Sara", age: 29 }
];
var over30 = people.filter(function(person) {
  return person.age > 30;
});
console.log(over30); // [{ name: "Bob", age: 35 }]

In this example, the filter() method is called on the “people” array and the callback function checks if each object has an age property greater than 30. If it does, it is included in the new “over30” array.

In addition to filtering data, the filter() method can also be used to remove elements from an array. For example, you can use the filter() method to remove all elements that match a certain value:

var numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var noFives = numbers.filter(function(number) {
  return number !== 5;
});
console.log(noFives); // [1, 2, 3, 4, 6, 7, 8, 9, 10]

In this example, the filter() method is called on the “numbers” array and the callback function checks if each element is not equal to 5. If it is not, it is included in the new “noFives” array.

Thanks for reading please ask doubts in comment section

Submit a Comment

Your email address will not be published. Required fields are marked *

Subscribe

Select Categories