الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <script> document.write(Math.hypot(3, 4) + '<br>'); // 5 document.write(Math.hypot(5, 12) + '<br>'); // 13 document.write(Math.hypot(3, 4, 5) + '<br>'); // 7.0710678118654755 document.write(Math.hypot(-5)); // 5 </script> </body> </html>