x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 对象</h1>
<h2>Object.toString() 方法</h2>
<p>使用 Object.toString() 返回对象构造函数:</p>
<p id="demo"></p>
<script>
const person = {
  firstName: "Bill",
  lastName: "Gates",
  age: 19,
  eyeColor: "blue"
};
const keys = Object.toString(person);
document.getElementById("demo").innerHTML = keys;
</script>
</body>
</html>