자바스크립트 배열의 마지막 요소를 가져오려면 slice() 메서드를 사용하세요.
예시
다음을 실행하여 마지막 요소를 얻을 수 있습니다.
<html> <body> <script> var array = [30,40,50,60]; document.write(array.slice(-1)[0]); </script> </body> </html>
자바스크립트 배열의 마지막 요소를 가져오려면 slice() 메서드를 사용하세요.
다음을 실행하여 마지막 요소를 얻을 수 있습니다.
<html> <body> <script> var array = [30,40,50,60]; document.write(array.slice(-1)[0]); </script> </body> </html>