JSFiddle - React, Tailwind, and code Playground
by orchid1
JavaScript
/*the alternative without curry */
function mToKm(input){
return (input*1.60936).toFixed(2) + ' Km';
}
function lbsToKg(input){
return (input*0.45460).toFixed(2) + ' Kg';
}
function fToC(offset, input){
return ((offset + input)*0.5556).toFixed(2) + ' degrees C';
}
alert(mToKm(10));
alert(lbsToKg(2.5));
alert(fToC(-32, 98));