Love beautiful code? We do too.
Phương thức array push() trong Javascript thêm một hoặc nhiều phần tử tới phần cuối của một mảng và trả về độ dài mới của mảng.
Cú pháp của nó như sau:
array.push(element1, ..., elementN);
Tham số
Trả về giá trị
<html>
<head>
<title>JavaScript Array push Method</title>
</head>
<body>
<script type="text/javascript">
var numbers = new Array(1, 4, 9);
var length = numbers.push(10);
document.write("new numbers is : " + numbers );
length = numbers.push(20);
document.write("<br />new numbers is : " + numbers );
</script>
</body>
</html>
Kết quả
new numbers is : 1,4,9,10
new numbers is : 1,4,9,10,20
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời