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);