আমাদের একটি জাভাস্ক্রিপ্ট ফাংশন লিখতে হবে যা তিনটি আর্গুমেন্ট নেয় −
height --> no. of rows of the array width --> no. of columns of the array val --> initial value of each element of the array
তারপর ফাংশন এই মানদণ্ডের উপর ভিত্তি করে গঠিত নতুন অ্যারে ফেরত দেবে।
উদাহরণ
এর জন্য কোড হবে −
const rows = 4, cols = 5, val = 'Example'; const fillArray = (width, height, value) => { const arr = Array.apply(null, { length: height }).map(el => { return Array.apply(null, { length: width }).map(element => { return value; }); }); return arr; }; console.log(fillArray(cols, rows, val));
আউটপুট
এবং কনসোলে আউটপুট হবে −
[ [ 'Example', 'Example', 'Example', 'Example', 'Example' ], [ 'Example', 'Example', 'Example', 'Example', 'Example' ], [ 'Example', 'Example', 'Example', 'Example', 'Example' ], [ 'Example', 'Example', 'Example', 'Example', 'Example' ] ]