Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
     <!-- 16:9 aspect ratio -->
    <img src="https://via.placeholder.com/1920X1080.jpg">
     <!-- 4:3 aspect ratio -->
    <img src="https://via.placeholder.com/1024X768.jpg">
</body>
</html>
 
    function gcd(a, b) {
        if (b > a) {
            temp = a;
            a = b;
            b = temp
        }
        while (b != 0) {
            m = a % b;
            a = b;
            b = m;
        }
        return a;
    }
    function ratio(x, y) {
        c = gcd(x, y);
        return "" + (x / c) + ":" + (y / c)
    }    
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers