var myarray = ["item 1", "item 2", "item 3", "item 4"];
//removes the first element of the array, and returns that element.
alert(myarray.shift());
//alerts "item 1"
//removes the last element of the array, and returns that element.
alert(myarray.pop());
//alerts "item 4"
- প্রথম অ্যারে কীভাবে সরিয়ে ফেলা যায় তবে অ্যারের বিয়োগটি প্রথম উপাদানটি ফেরত পাঠায়
- আমার উদাহরণে
"item 2", "item 3", "item 4"
যখন আমি প্রথম উপাদানটি সরিয়ে ফেলি তখন আমার উচিত
alert(array.slice(1))
বাarray.shift(); alert(array);