Miêu tả

Phương thức array pop() trong Javascript gỡ bỏ phần tử cuối cùng từ một mảng và trả về phần tử đó.

Cú pháp

Cú pháp của nó như sau:

array.pop();

Trả về giá trị

Trả về phần tử bị gỡ bỏ từ một mảng.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>JavaScript Array pop Method</title>
   </head>
   
   <body>
   
      <script type="text/javascript">
         var numbers = [1, 4, 9];
         
         var element = numbers.pop();
         document.write("element is : " + element ); 
         
         var element = numbers.pop();
         document.write("<br />element is : " + element );
      </script>
      
   </body>
</html>

Kết quả

element is : 9
element is : 4  

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday