Skip to content

Instantly share code, notes, and snippets.

@gilbertoquinteroA
Created July 9, 2018 00:57
Show Gist options
  • Save gilbertoquinteroA/feddca84e5ffb08c64d8091ed458569c to your computer and use it in GitHub Desktop.
Save gilbertoquinteroA/feddca84e5ffb08c64d8091ed458569c to your computer and use it in GitHub Desktop.
var fruits = ['apple', 'banana', 'grapes', 'mango', 'orange'];
/**
* Array filters items based on search criteria (query)
*/
//creamos un fucion para filtrar los dos y le pasamos un paramentro llamado query
function filterItems(query) {
//aqui return el filter fruits.filter
return fruits.filter(function(el) {
//verificamos si
return el.toLowerCase().indexOf(query.toLowerCase()) > -1;
})
}
console.log(filterItems('ap')); // ['apple', 'grapes']
console.log(filterItems('an')); // ['banana', 'mango', 'orange']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment