How to create an array
##1. Use the new keyword and Array() to create an array
##var arr = new Array(); //Create an empty array
var arr = new Array("zhou gensheng" , "male" , 30); //Create an array and initialize the elements of the array
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> //创建一个没有任何元素的数组 var arr = new Array(); //增加数组元素 arr[0] = "张三"; arr[1] = "男"; arr[2] = 25; arr[3] = "安徽"; document.write(arr); </script> </head> <body> </body> </html>
2. Use [] to create
## square brackets [ ], use commas in English to separate multiple values.
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> //使用[]方式创建一个数组 var arr = ["张三","男",25,"安徽"]; document.write(arr); </script> </head> <body> </body> </html>