हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो संख्याओं की एक सरणी लेता है। फिर फ़ंक्शन को सरणी में सबसे छोटी संख्या की अनुक्रमणिका वापस करनी चाहिए।
उदाहरण
इसके लिए कोड होगा -
const arr = [3, 56, 56, 23, 7, 76, -2, 345, 45, 76, 3]; const lowestIndex = arr => { const creds = arr.reduce((acc, val, ind) => { let { num, index } = acc; if(val < num){ num = val; index = ind; }; return { num, index }; }, { num: Infinity, index: -1 }); return creds.index; }; console.log(lowestIndex(arr));
आउटपुट
कंसोल में आउटपुट -
6