Love beautiful code? We do too.
Phương thức array shift() trong JavaScipt gỡ bỏ phần tử đầu tiên từ một mảng và trả về phần tử đó.
Cú pháp của nó như sau:
array.shift();
Trả về giá trị
<html>
<head>
<title>JavaScript Array shift Method</title>
</head>
<body>
<script type="text/javascript">
var element = [105, 1, 2, 3].shift();
document.write("Removed element is : " + element );
</script>
</body>
</html>
Kết quả
Removed element is : 105
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời