map() |
New array |
[1, 2, 3].map(x => x * 2) |
New array [2, 4, 6] |
অ্যারের প্রতিটি এলিমেন্টের উপর ফাংশন প্রয়োগ করে নতুন অ্যারে তৈরি করে। (Applies a function to each element in the array and creates a new array.) |
filter() |
New array |
[1, 2, 3, 4].filter(x => x > 2) |
New array [3, 4] |
একটি শর্ত অনুসারে এলিমেন্টগুলো ফিল্টার করে এবং নতুন অ্যারে রিটার্ন করে। (Filters elements based on a condition and returns a new array.) |
concat() |
New array |
[1, 2].concat([3, 4]) |
New array [1, 2, 3, 4] |
একাধিক অ্যারে যোগ করে নতুন অ্যারে রিটার্ন করে। (Joins multiple arrays and returns a new array.) |
slice() |
New array |
[1, 2, 3, 4].slice(1, 3) |
New array [2, 3] |
নির্দিষ্ট ইন্ডেক্স থেকে কিছু এলিমেন্ট কপি করে নতুন অ্যারে রিটার্ন করে। (Copies specific elements based on indices to create a new array.) |
join() |
String |
[1, 2, 3].join('-') |
String '1-2-3' |
অ্যারের সব এলিমেন্টকে একত্রে যোগ করে একটি স্ট্রিং রিটার্ন করে। (Joins all array elements into a string.) |
reverse() |
New array |
[1, 2, 3].reverse() |
New array [3, 2, 1] |
অ্যারের এলিমেন্টগুলো উল্টে নতুন অ্যারে রিটার্ন করে। (Reverses the elements of the array and returns a new array.) |
includes() |
Boolean |
[1, 2, 3].includes(2) |
true |
অ্যারে মধ্যে একটি নির্দিষ্ট এলিমেন্ট রয়েছে কিনা তা চেক করে। (Checks if a specific element exists in the array.) |
indexOf() |
Number (Index) |
[1, 2, 3].indexOf(2) |
1 |
নির্দিষ্ট এলিমেন্টের প্রথম ইনডেক্স রিটার্ন করে। (Returns the first index of a specific element.) |
find() |
First matched element |
[1, 2, 3].find(x => x > 1) |
2 |
প্রথম মিল পাওয়া এলিমেন্টটি রিটার্ন করে। (Returns the first matching element.) |
findIndex() |
Number (Index) |
[1, 2, 3].findIndex(x => x > 1) |
1 |
প্রথম মিল পাওয়া এলিমেন্টের ইনডেক্স রিটার্ন করে। (Returns the index of the first matching element.) |
flat() |
New array |
[1, [2, 3], [4, 5]].flat() |
New array [1, 2, 3, 4, 5] |
অ্যারের ভিতরের nested অ্যারেগুলিকে একত্রিত করে নতুন অ্যারে রিটার্ন করে। (Flattens nested arrays into a single array.) |
flatMap() |
New array |
[1, 2].flatMap(x => [x, x * 2]) |
New array [1, 2, 2, 4] |
প্রথমে map() প্রয়োগ করে তারপর ফ্ল্যাট করে। (Applies map() first, then flattens the result.) |
sort() |
New array |
[3, 1, 2].sort() |
New array [1, 2, 3] |
অ্যারের এলিমেন্টগুলো সাজিয়ে দেয়। (Sorts the elements of the array.) |
every() |
Boolean |
[1, 2, 3].every(x => x > 0) |
true |
সমস্ত এলিমেন্ট শর্ত পূর্ণ করলে true, অন্যথায় false রিটার্ন করে। (Returns true if all elements satisfy the condition; otherwise, false.) |
some() |
Boolean |
[1, 2, 3].some(x => x > 2) |
true |
যদি কোনো এক বা একাধিক এলিমেন্ট শর্ত পূর্ণ করে, তবে true রিটার্ন করে। (Returns true if one or more elements satisfy the condition.) |
reduce() |
Single value (like number) |
[1, 2, 3].reduce((acc, x) => acc + x, 0) |
6 |
অ্যারের সকল এলিমেন্টকে একত্রিত করে একটি একক মান রিটার্ন করে। (Combines all elements into a single value.) |
reduceRight() |
Single value (like number) |
[1, 2, 3].reduceRight((acc, x) => acc + x, 0) |
6 |
reduce() এর মত তবে ডান থেকে বাম দিকে কাজ করে। (Similar to reduce(), but works from right to left.) |
Top comments (0)