ft to inches code example
Example 1: cm to inches
const cm = 1;
console.log(`cm:${cm} = in:${cmToIn(cm)}`);
function cmToIn(cm){
var in = cm/2.54;
return in;
}
Example 2: inch to foot
1 inch = 0.0833333333 foot
Example 3: foot to inch
1 foot = 12 inches