DEV Community

Discussion on: Some Things About JSON That You May Have Missed

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

Another hidden ability of JavaScript JSON is Date.prototype.toJSON, which will customize JSON.stringify behavior of the object.

Collapse
 
aumayeung profile image
John Au-Yeung

Thanks for finding that.

That's a method that most people don't think of using.