Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Listado.prototype.obtenerUbicaciones = function() {
  2. var c = [];
  3. for (var i = 0; i < this.restaurantes.length; i++) {
  4. c.push(this.restaurantes[i].ubicacion);
  5. }
  6. return (this.noRepeat(ciudadFiltrada)).sort();
  7. }
  8.  
  9. Listado.prototype.obtenerUbicaciones = function() {
  10. var ciudades = [];
  11. var ciudadFiltrada = ciudades.map(function(ciudad{
  12. return ciudad;
  13. });
  14. return (this.noRepeat(ciudadFiltrada)).sort();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement