JavaScript: 対角線を求める関数
getDiagonal()関数
コード
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"