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