亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Javascript basic tutorial array

JavaScript Array (array)

The role of an array object is to use separate variable names to store a series of values.

How to create an array:

We have the following methods

The first one:

var arr = new array();

arr[0]=1;

arr[1]=2;


##Second type:

var arr = new array(1,2);


The following code

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>數(shù)組</title>
</head>
<body>
	<script type="text/javascript">
			var arr =Array();
			arr[0] = 1;
			arr[1] = 3;
			arr[2] = 5;
	</script>
</body>
</html>


Continuing Learning
||
<script> document.write("歡迎學(xué)習(xí)數(shù)組"); </script>
submitReset Code