Huauauaa / cheat-sheet

https://huauauaa.github.io/cheat-sheet/
0 stars 0 forks source link

json #41

Open weiweihuacc opened 2 years ago

weiweihuacc commented 2 years ago
const foo = { name: undefined };
console.log(JSON.stringify(foo));
// {}
const bar = { name: null };
console.log(JSON.stringify(bar));
// {"name":null}
const baz = { name: '' };
console.log(baz);
// { name: '' }