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