Calculates the width of an element from its height and aspect ratio.
The height of the element.
The aspect ratio (width / height).
The calculated width, rounded to the nearest whole number.
const width = getHeightFromAR(1080, 1.7777777778);console.log(width); // Output: 1920 Copy
const width = getHeightFromAR(1080, 1.7777777778);console.log(width); // Output: 1920
Calculates the width of an element from its height and aspect ratio.