How an array works

Simply speaking, an array is a data structure consisting of a collection of elements (values or variables). They can be manipulated using the following methods and more:
অ্যারে হল এক বিশেষ ধরনের ডেটা স্ট্রাকচার যার মধ্যে আমরা কিছু ভ্যালু বা অন্যান্য ভ্যারিয়েবল স্টোর করে রাখতে পারি । অ্যারে ম্যানিপুলেশন হল অ্যারের মধ্যে নির্দিষ্ট পজিশনে (index) কোনো ভ্যালু বা ভ্যারিয়েবলকে যুক্ত করা, বাদ দেওয়া ইত্যাদি। নিম্নলিখিত পদ্ধতিগুলি ব্যবহার করে অ্যারে ম্যানিপুলেশন করা যেতে পারে:


Method: array.push(...)
Delete the last item. Method: array.pop()
Delete the first item. Method: array.shift()
Method: array.unshift(...)
Method: array=[ ]