আমাদের একটি অ্যারে ফাংশন (Array.prototype.get()) লিখতে হবে যা প্রথমে তিনটি আর্গুমেন্ট নেয়, একটি সংখ্যা n, দ্বিতীয়টিও একটি সংখ্যা, বলুন m, (m <=অ্যারের দৈর্ঘ্য-1) এবং দ্বিতীয়টি একটি স্ট্রিং যার দুটি মান থাকতে পারে - 'বাম' বা 'ডান'।
ফাংশনটি আসল অ্যারের একটি সাব-অ্যারে ফেরত দেবে যাতে এন এলিমেন্ট থাকা উচিত m ইনডেক্স থেকে শুরু করে এবং নির্দিষ্ট দিক যেমন বাম বা ডানে।
যেমন −
// if the array is: const arr = [0, 1, 2, 3, 4, 5, 6, 7]; // and the function call is: arr.get(4, 6, 'right'); // then the output should be: const output = [6, 7, 0, 1];
সুতরাং, আসুন এই ফাংশনের জন্য কোড লিখি -
উদাহরণ
const arr = [0, 1, 2, 3, 4, 5, 6, 7]; Array.prototype.get = function(num, ind, direction){ const amount = direction === 'left' ? -1 : 1; if(ind > this.length-1){ return false; }; const res = []; for(let i = ind, j = 0; j < num; i += amount, j++){ if(i > this.length-1){ i = i % this.length; }; if(i < 0){ i = this.length-1; }; res.push(this[i]); }; return res; }; console.log(arr.get(4, 6, 'right')); console.log(arr.get(9, 6, 'left'));
আউটপুট
কনসোলে আউটপুট হবে −
[ 6, 7, 0, 1 ] [ 6, 5, 4, 3, 2, 1, 0, 7, 6 ]