Skip to content

Instantly share code, notes, and snippets.

@manishprajapatidev
Created December 10, 2020 09:23
Show Gist options
  • Save manishprajapatidev/777dc0a251346c19ccb863282d0fcf94 to your computer and use it in GitHub Desktop.
Save manishprajapatidev/777dc0a251346c19ccb863282d0fcf94 to your computer and use it in GitHub Desktop.
meterConversion, converts meter to km, and km to meter
var meterConversion = (function() {
var mToKm = function(distance) {
return parseFloat(distance / 1000);
};
var kmToM = function(distance) {
return parseFloat(distance * 1000);
};
return {
mToKm : mToKm,
kmToM : kmToM
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment