Created
July 9, 2018 00:57
-
-
Save gilbertoquinteroA/feddca84e5ffb08c64d8091ed458569c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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