Array.pop
配列の最後の値を得る
構文
arrayObject.pop()
例文
<html> <head> <title>Array.pop</title> </head> <body> <!--配列の最後の値を得るのサンプル--> <script type="text/javascript"> var ar = new Array(2); ar[0] = "a"; ar[1] = "b"; document.write(ar+"<br>"); document.write(ar.pop()+"<br>"); document.write(ar); </script> </body> </html>
関連記事
- Array.unshift
- Array.splice
- Array.sort
- Array.slice
- Array.shift
- Array.reverse
- Array.push
- Array.length
- Array.join
- Array.concat
スポンサーリンク