<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> //使用[]方式创建一个数组 arr = [ [1,2,3,4], [4,5,6,7], [8,9,10,11] ]; document.write(arr); </script> </head> <body> </body> </html>
这样程序也是有输出的
数据分析师2017-09-30 22:47:29
Why can the program run even if I don’t add var to declare variables? -PHP Chinese website Q&A-Why can the program run even if I don’t add var to declare variables? -PHP Chinese website Q&A
Please watch and learn.
阿神2016-12-17 13:45:51
因为js的语言特点,对于变量,可不申明,直接使用。但是这样变量就会变成全局变量,实际使用过程中可能会发生各种神奇的bug,所以按照规范来看,还是希望开发者能够先进行变量申明,再使用变量。