हमें एक जावास्क्रिप्ट रिकर्सिव फ़ंक्शन लिखना है जो एक संख्या लेता है और संख्या में सबसे बड़ा अंक देता है।
उदाहरण के लिए:यदि संख्या है -
45654356
फिर वापसी मूल्य 6
. होना चाहिएउदाहरण
निम्नलिखित कोड है -
const num = 45654356; const greatestDigit = (num = 0, greatest = 0) => { if(num){ const max = Math.max(num % 10, greatest); return greatestDigit(Math.floor(num / 10), max); }; return greatest; }; console.log(greatestDigit(num));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
6