JS โฉ value โฉ object โฉ convert
convert an object to other forms.
obj.toString() // object -> string obj.toLocaleString() // localization obj.valueOf() // object -> primitive (typically, number) obj.toJSON() // customization method used by JSON.stringify()
about .toJSON()
Object.prototype does not define.toJSON().
.toJSON()
JSON.stringify() looks for .toJSON() on any object it is asked to serialize.
if it exists, it is invoked, and the return value is serialized, instead of the original object.
serializing objects
object -> primitive conversion
โ๏ธ .toString()
โ๏ธ .valueOf()
๐พ valueToString()
type conversion
replit โฉ .toJSON()
let point = { x: 1, y: 2, toJSON() { return `(${this.x}, ${this.y})` } // custom .toJSON() method }; JSON.stringify([point]), // '["(1, 2)"]'
JavaScript: The Definitive Guide โฉ
3.9.2 Explicit Conversions
6.9 Object Methods
14.4.7
.toString() โฉ
Object.prototype.toString()
.toLocaleString() โฉ
Object.prototype.toLocaleString()
Date.prototype.toLocaleString()
.valueOf() โฉ
Object.prototype.valueOf()
.toJSON() โฉ
Date.prototype.toJSON()
Last updated 2 years ago
Was this helpful?