हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो संख्याओं की एक सरणी लेता है।
फ़ंक्शन को सरणी का सबसे मध्य तत्व वापस करना चाहिए।
उदाहरण के लिए -
यदि सरणी है -
const arr = [1, 2, 3, 4, 5, 6, 7];
तब आउटपुट 4
. होना चाहिएउदाहरण
निम्नलिखित कोड है -
const arr = [1, 2, 3, 4, 5, 6, 7]; const middle = function(){ const half = this.length >> 1; const offset = 1 - this.length % 2; return this.slice(half - offset, half + 1); }; Array.prototype.middle = middle; console.log(arr.middle()); console.log([1, 2, 3, 4, 5, 6].middle());
आउटपुट
यह कंसोल पर निम्न आउटपुट उत्पन्न करेगा -
[ 4 ] [ 3, 4 ]