हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो दो नंबर लेता है। पहली संख्या एक समकोण त्रिभुज के आधार की लंबाई दर्शाती है और दूसरी लंब है। फिर फ़ंक्शन को इन मानों के आधार पर कर्ण की लंबाई की गणना करनी चाहिए।
उदाहरण के लिए -
यदि आधार =8, लंबवत =6
तब आउटपुट 10
. होना चाहिएउदाहरण
निम्नलिखित कोड है -
const base = 8; const perpendicular = 6; const findHypotenuse = (base, perpendicular) => { const bSquare = base ** 2; const pSquare = perpendicular ** 2; const sum = bSquare + pSquare; const hypotenuse = Math.sqrt(sum); return hypotenuse; }; console.log(findHypotenuse(base, perpendicular)); console.log(findHypotenuse(34, 56));
आउटपुट
कंसोल पर आउटपुट निम्न है -
10 65.5133574166368