Writing Functions
Most programming is done by writing
functions, so learning the form is key
function bmiE ( weightLBS, heightIn ) {
   // Figure Body Mass Index in English units
   var heightFt = heightIn / 12; // Change to feet
   return 4.89 * weightLBS / (heightFt * heightFt);
}