function SomeObject() {
this.attribute = 'something'
}
SomeObject.prototype.toString = function() {
return this.attribute
}
var so = new SomeObject()
console.log(so)
你会看到
{ attribute: 'something' }
是否可以覆盖打印的内容。
例如:
打印'something'
(而不是{attribute: 'something'}
)
注意:这是node.js