JavaScript program to convert inches to feet


Following program shows you how to convert inches to feet.
In this program we get inches from user, once we get those we need to divide with 12 so that we get in feet

var inches = parseInt(prompt("Please enter inches:"));
var feet = inches / 12;
console.log(feet + " Feet");

Output:

Please enter inches:
13
1.0833333333333333 Feet