Object的toString()方法了解JavaScript中对象的toString()方法 当在对象实例上调用时,返回该对象的字符串表示。除非被覆盖,否则返回[object Object]字符串。然后对象可以返回自己的字符串表示。 12const person = { name: 'Fred' }person.toString() //[object Object] Tags: JavaScript, object, toString()