数组shift方法_数组shift()方法以及JavaScript中的示例

本文详细介绍了JavaScript中数组的shift()方法,该方法用于删除数组的第一个元素并返回该元素,同时改变数组的长度。通过实例展示了如何使用shift()方法,并提供了完整的JavaScript代码示例。
摘要由CSDN通过智能技术生成

数组shift方法

JavaScript shift()方法 (JavaScript shift() method)

shift() method is used to remove the first element of an array and returns the deleted element.

shift()方法用于删除数组的第一个元素,并返回删除的元素。

It changes the array length.

它改变了数组的长度。

Syntax:

句法:

    array_name.shift();

Parameters: None

参数:

Return value: It returns a type of value that array contains, it actual returns deleted the element.

返回值:它返回数组包含的一种类型的值,它实际返回已删除的元素。

Example:

例:

    Input:
    var arr1 = [10, 20, 30, 40, 50];

    Function call:
    arr1.shift();
    
    Output:
    20, 30, 40, 50

JavaScript Code to demonstrate example of Array.shift() method

JavaScript代码演示Array.shift()方法的示例

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
	<script>
		var arr1 = [10, 20, 30, 40, 50];
		var arr2 = ["Amit", "Ankur", "Akash"];
		
		//printing arrays before the deleting elements
		document.write("arr1: " + arr1 + "<br>");
		document.write("arr1 length: " + arr1.length + "<br>");
		document.write("arr2: " + arr2 + "<br>");
		document.write("arr2 length: " + arr2.length + "<br>");
		
		//removing element
		arr1.shift();
		arr1.shift();		
		arr2.shift(); 
		document.write("<br>After removing...<br><br>");
		document.write("arr1: " + arr1 + "<br>");
		document.write("arr1 length: " + arr1.length + "<br>");
		document.write("arr2: " + arr2 + "<br>");
		document.write("arr2 length: " + arr2.length + "<br>");		
		
	</script>
</body>
</html>

Output

输出量

arr1: 10,20,30,40,50
arr1 length: 5
arr2: Amit,Ankur,Akash
arr2 length: 3

After removing...

arr1: 30,40,50
arr1 length: 3
arr2: Ankur,Akash
arr2 length: 2


翻译自: https://www.includehelp.com/code-snippets/array-shift-method-with-example-in-javascript.aspx

数组shift方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值