xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript Console Object示例 - 基础教程(div.cn)</title>
<body>
<h1>Outputting multiple 对象</h1>
<p>在键盘上按F12键可在浏览器的控制台中查看消息:</p>
<script>
var car = "Scorpio";
var myObject = { str: "Some text", id: 12 };
console.log("My first car was a", car, ". The object is:", myObject);
</script>
</body>
</html>