Created
March 24, 2021 01:13
-
-
Save pablotolentino/a011688836434e0e4c70ba4b95ea5d7d to your computer and use it in GitHub Desktop.
obtener-poblacion
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
let ciudadesResultado = ciudades.filter(function (ciudad) { | |
return ciudad.poblacion > 3000000; | |
}); | |
console.log(ciudadesResultado); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment