convertir pulgadas a pies JavaScript
const inchesToFeet = (inches = 0) => inches*0.083333;
inchesToFeet(12); // = 0.9999960000000001
Tung
const inchesToFeet = (inches = 0) => inches*0.083333;
inchesToFeet(12); // = 0.9999960000000001