blob: b04571d5fef0b5a245e55edf05a315bf5bc9d3d9 [file] [log] [blame]
function test() {
return Math.hypot() === 0 &&
Math.hypot(1) === 1 &&
Math.hypot(9, 12, 20) === 25 &&
Math.hypot(27, 36, 60, 100) === 125;
}
if (!test())
throw new Error("Test failed");