الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <script> let adjacent = 8; let hypotenuse = 10; let angle = Math.atan(adjacent/hypotenuse); document.write(angle); // 0.6747409422235527 </script> </body> </html>