目录

JavaScript Object 参考


JavaScript 对象

对象是 JavaScript 的数据类型之一。

对象用于存储键/值(名称/值)集合。

JavaScript 对象是一个集合命名值

以下示例创建一个具有四个键/值属性的 JavaScript 对象:

示例

const person = {
  firstName: "John",
  lastName: "Doe",
  age: 50,
  eyeColor: "blue"
};
亲自试一试 »

有关对象的教程,请阅读我们的JavaScript 对象教程


JavaScript 对象方法和属性

Name Description
constructor Returns the function that created an object's prototype
keys() Returns an Array Iterator object with the keys of an object
prototype Let you to add properties and methods to JavaScript objects
toString() Converts an object to a string and returns the result
valueOf() Returns the primitive value of an object