stringify-keep-undefined-value.js 141 Bytes
var obj = {
  a: 1,
  b: null,
  c: undefined
};
print(JSON.stringify(obj, function(k, v){
  return typeof v === 'undefined' ? null : v;
}));