javascript shift()删除数组中的第一个元素
Posted runde
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript shift()删除数组中的第一个元素相关的知识,希望对你有一定的参考价值。
javascript shift()可以把数组中的第一个元素从其中删除,并返回第一个元素的值。(如果数组是空的,那么shift()方法将不进行任何操作,并返回undefined值。)
<!DOCTYPE html> <html> <head> <title>Runde</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script type="text/javascript"> var arr = new Array(4) arr[0]="合肥" arr[1]="上海" arr[2]="广州" arr[3]="天津" document.write("原有数组元素为:"+arr) document.write("<br />") document.write("删除数组中的第一个元素为:"+arr.shift()) document.write("<br />") document.write("删除元素后的数组为:"+arr) </script> </head> <body> </body> </html>
以上是关于javascript shift()删除数组中的第一个元素的主要内容,如果未能解决你的问题,请参考以下文章