function getDiagonal(x, y) { if (x > 0 && y > 0) return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)); else return false; }
document.write(getDiagonal(24, 36)); // => "43.266615305567875"