xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript 变量大小写命名语法示例 - 基础教程(div.cn)</title>
<body>
<p id="para"></p>
<script>
var myVariable = 1;
var myvariable = 2;
document.getElementById("para").innerHTML =
"The value of <b>myVariable</b>: " + myVariable +
"<br>The value of <b>myvariable</b>: " + myvariable;
</script>
</body>
</html>