X

TV Mounting Height Calculator

 

 

TV Mounting Height Calculator

Please enter the following information:

 

// Calculate the recommended TV mounting height in inches const tvh = Math.sqrt((tvSize**2 *9) / (16 **2 +9 **2)).toFixed(0); const mountingHeight = Math.round((eyeLevel + ((viewingDistance*12) * 0.1763269))-(tvh/2)); const tvvd = Math.round((tvSize * 1.67)/12);

// Display the result document.getElementById('result').innerHTML = `Recommended TV Mounting Height:
${mountingHeight} inches from floor to bottom of the TV
Recommended TV Viewing Distance: ${tvvd} feet`; }