Created
September 26, 2019 04:56
-
-
Save secretgspot/b3ff1c42f235460c2f1c37da7efd1a66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find screen resolution based on ratio | |
function findScreenHeight(width, ratio) { | |
const [widthRatio, heightRatio] = ratio.split(':') | |
const height = width / widthRatio * heightRatio | |
return width + 'x' + height | |
} | |
findScreenHeight(1280,"16:9"); // '1280x720' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment