Last active
February 28, 2019 18:41
-
-
Save PierreTurnbull/7764463cd00519d9e86eb3143bff795a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
distanceMatrix = [{ | |
'Av. Vieira Souto, 168 - Ipanema, Rio de Janeiro - RJ, 22420-004, Brazil': 'ZERO_RESULTS' | |
}, | |
{ | |
'Rynek Główny 12, 33-332 Kraków, Poland': 1540493 | |
}, | |
{ | |
'27 Derb Lferrane, Marrakech 40000, Morocco': 2539727 | |
}, | |
{ | |
'R. Roberto Símonsen, 122 - Sé, São Paulo - SP, 01017-020, Brazil': 'ZERO_RESULTS' | |
}] | |
distanceMatrix.filter(location => { | |
const value = Object.values(location)[0] | |
return !isNaN(value) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment