简体   繁体   中英

JSON.stringify() is this object and function standard to javascript?

I have never seen it before until today and it seems to just work without including any .js or framework. is this a standard object in javascript? if so where can I find the documentation for it and other uncommon Objects that are available in javascript

It's part of the ES5 specification. See http://es5.github.io/ for the whole annotated spec and for this function specifically see http://es5.github.io/#x15.12.3

See also http://caniuse.com/#search=json for a browser support matrix.

Yes it is. It's a standard object, in common use and works in all current browser versions. Documentation here .

The only time you'll have a problem with it is in old IE versions; if you need to support them, you'll need to use a polyfill library like this one .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM