2017年1月15日 星期日

(js)物間經過 JSON.stringfy()的結果

var x = {
            a: 0,
            b: '0',
            c: '',
            d: undefined,
            e: null
        };

JSON.stringify(x) => {"a":0,"b":"0","c":"","e":null}
----------------------------------------------------------------------------
a  =>  0 , type =  number
b  =>  0 , type =  string
c  =>   , type =  string
e  =>  null , type =  object