Skip to content

Instantly share code, notes, and snippets.

@joaocarvalhowd
Last active July 5, 2017 13:12
Show Gist options
  • Save joaocarvalhowd/a5c171775a6e341e79e131b97b836d17 to your computer and use it in GitHub Desktop.
Save joaocarvalhowd/a5c171775a6e341e79e131b97b836d17 to your computer and use it in GitHub Desktop.
function Distancia (metros) {
const distancia = parseFloat(metros).toFixed(2)
return metros >= 1000 ? `${(distancia / 1000).toFixed(2)} KM` : `${distancia} M`
}
export default Distancia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment