<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">html
<html xmlns="http://www.w3.org/1999/xhtml">數組
<head>ui
<title>js變量的聲明和類型</title>spa
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />xml
<meta name="description" content="布爾教育 http://www.itbool.com" />htm
</head>對象
<body>ip
js的變量的聲明utf-8
string int boolean null undefined未定義類型string
array()數組
<script>
var arr={a:'b','b':'c','c':'d'};//對象類型
document.write(arr.a); //顯示對象中的元素
document.write(arr[a]);//遇到.語法不靈
var aa=[1,2,3,4,5];
document.write(aa);//顯示數組
var hello="hello";
alert("hello");
</script>
</body>
</html>